-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathmain.yaml
More file actions
67 lines (65 loc) · 3.43 KB
/
Copy pathmain.yaml
File metadata and controls
67 lines (65 loc) · 3.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#
# Copyright IBM Corp. All Rights Reserved.
#
# SPDX-License-Identifier: Apache-2.0
#
---
# Automatically generated by aar-doc. DO NOT EDIT MANUALLY.
# Runs the container-based Jaeger path when set to C(true).
jaeger_use_container: '{{ (not jaeger_use_k8s) and (not jaeger_use_openshift) }}'
# Runs the Kubernetes Jaeger path when set to C(true).
jaeger_use_k8s: false
# Sets the registry endpoint for the Jaeger image.
jaeger_registry_endpoint: "{{ lookup('env', 'JAEGER_REGISTRY_ENDPOINT') or 'docker.io/jaegertracing' }}"
# Sets the Jaeger image name.
jaeger_image_name: all-in-one
# Sets the Jaeger image tag.
jaeger_image_tag: latest
# Sets the Jaeger container image.
jaeger_image: "{{ jaeger_registry_endpoint }}/{{ jaeger_image_name }}:{{ jaeger_image_tag }}"
# Sets the Jaeger container name.
jaeger_container_name: '{{ inventory_hostname }}'
# Sets the remote directory mounted into the Jaeger container for configuration and certificates.
jaeger_remote_config_dir: '{{ remote_config_dir }}'
# Sets the in-container directory where Jaeger reads configuration and certificates.
jaeger_container_config_dir: /var/config
# Sets the Jaeger query UI port.
jaeger_ui_port: 16686
# Sets the Jaeger admin HTTP port.
jaeger_admin_port: 14269
# Sets the Jaeger collector HTTP server port.
jaeger_http_server_port: 14268
# Sets the Jaeger OTLP HTTP collector port.
jaeger_http_collector_port: 4318
# Sets the Jaeger gRPC server port.
jaeger_grpc_server_port: 14250
# Sets the Jaeger OTLP gRPC collector port.
jaeger_collector_port: 4317
# Sets the Kubernetes resource name used for Jaeger objects.
jaeger_k8s_resource_name: '{{ inventory_hostname }}'
# Value for the Kubernetes C(app.kubernetes.io/part-of) label applied to Jaeger resources.
jaeger_k8s_part_of: monitoring
# Sets the rollout wait timeout for the Jaeger Kubernetes deployment.
jaeger_k8s_wait_timeout: 120
# Sets the pod filesystem group for the Jaeger Kubernetes workload.
jaeger_k8s_fs_group: 0
# Set to C(true) to create a LoadBalancer Service entry that exposes the UI port externally.
# When undefined or C(false), the UI port is not included in the LoadBalancer Service.
jaeger_k8s_loadbalancer_expose_ui_port: false
# Set to C(true) to create a LoadBalancer Service entry that exposes the admin port externally.
# When undefined or C(false), the admin port is not included in the LoadBalancer Service.
jaeger_k8s_loadbalancer_expose_admin_port: false
# Set to C(true) to create a LoadBalancer Service entry that exposes the HTTP server port externally.
# When undefined or C(false), the HTTP server port is not included in the LoadBalancer Service.
jaeger_k8s_loadbalancer_expose_http_server_port: false
# Set to C(true) to create a LoadBalancer Service entry that exposes the HTTP collector port externally.
# When undefined or C(false), the HTTP collector port is not included in the LoadBalancer Service.
jaeger_k8s_loadbalancer_expose_http_collector_port: false
# Set to C(true) to create a LoadBalancer Service entry that exposes the gRPC server port externally.
# When undefined or C(false), the gRPC server port is not included in the LoadBalancer Service.
jaeger_k8s_loadbalancer_expose_grpc_server_port: false
# Set to C(true) to create a LoadBalancer Service entry that exposes the collector port externally.
# When undefined or C(false), the collector port is not included in the LoadBalancer Service.
jaeger_k8s_loadbalancer_expose_collector_port: false
# Selects the OpenShift deployment branch.
jaeger_use_openshift: false