forked from kiali/kiali-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.yml
341 lines (324 loc) · 8.66 KB
/
main.yml
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
# Defaults for all user-facing Kiali settings.
#
# Note that these are under the main dictionary group "kiali_defaults".
# The actual vars used by the role are found in the vars/ directory.
# These defaults (the dictionaries under "kiali_defaults") are merged into the vars such that the values
# below (e.g. deployment, server, etc.) are merged in rather than completely replaced by user-supplied values.
#
# If new groups are added to these defaults, you must remember to add the merge code to vars/main.yml.
kiali_defaults:
installation_tag: ""
istio_namespace: ""
version: "default"
additional_display_details:
- title: "API Documentation"
annotation: "kiali.io/api-spec"
icon_annotation: "kiali.io/api-type"
auth:
openid:
additional_request_params: {}
allowed_domains: []
api_proxy: ""
api_proxy_ca_data: ""
api_token: "id_token"
authentication_timeout: 300
authorization_endpoint: ""
client_id: ""
disable_rbac: false
http_proxy: ""
https_proxy: ""
insecure_skip_verify_tls: false
issuer_uri: ""
scopes: ["openid", "profile", "email"]
username_claim: "sub"
openshift:
#token_inactivity_timeout:
#token_max_age:
strategy: ""
clustering:
autodetect_secrets:
enabled: true
label: "kiali.io/multiCluster=true"
clusters: []
kiali_urls: []
custom_dashboards: []
deployment:
#additional_service_yaml:
affinity:
node: {}
pod: {}
pod_anti: {}
cluster_wide_access: true
configmap_annotations: {}
custom_envs: []
custom_secrets: []
discovery_selectors: {}
dns:
config: {}
policy: ""
host_aliases: []
hpa:
api_version: ""
spec: {}
image_digest: ""
image_name: ""
image_pull_policy: "IfNotPresent"
image_pull_secrets: []
image_version: ""
ingress:
additional_labels: {}
class_name: "nginx"
#enabled:
#override_yaml:
instance_name: "kiali"
logger:
log_format: "text"
log_level: "info"
sampler_rate: "1"
time_field_format: "2006-01-02T15:04:05Z07:00"
namespace: ""
node_selector: {}
pod_annotations: {}
pod_labels: {}
priority_class_name: ""
replicas: 1
#resources:
secret_name: "kiali"
security_context: {}
service_annotations: {}
#service_type: "NodePort"
tolerations: []
version_label: ""
view_only_mode: false
extensions: []
external_services:
custom_dashboards:
discovery_auto_threshold: 10
discovery_enabled: "auto"
enabled: true
is_core: false
namespace_label: ""
prometheus:
auth:
ca_file: ""
insecure_skip_verify: false
password: ""
token: ""
type: "none"
use_kiali_token: false
username: ""
cache_duration: 7
cache_enabled: true
cache_expiration: 300
custom_headers: {}
health_check_url: ""
is_core: true
query_scope: {}
thanos_proxy:
enabled: false
retention_period: "7d"
scrape_interval: "30s"
url: ""
grafana:
auth:
ca_file: ""
insecure_skip_verify: false
password: ""
token: ""
type: "none"
use_kiali_token: false
username: ""
dashboards:
- name: "Istio Service Dashboard"
variables:
namespace: "var-namespace"
service: "var-service"
- name: "Istio Workload Dashboard"
variables:
namespace: "var-namespace"
workload: "var-workload"
- name: "Istio Mesh Dashboard"
- name: "Istio Control Plane Dashboard"
- name: "Istio Performance Dashboard"
- name: "Istio Wasm Extension Dashboard"
enabled: true
external_url: ""
health_check_url: ""
#internal_url
is_core: false
istio:
component_status:
enabled: true
egress_gateway_namespace: ""
envoy_admin_local_port: 15000
gateway_api_classes: []
ingress_gateway_namespace: ""
istio_api_enabled: true
#istio_canary_revision:
#current: prod
#upgrade: canary
istio_identity_domain: "svc.cluster.local"
istio_injection_annotation: "sidecar.istio.io/inject"
istio_sidecar_annotation: "sidecar.istio.io/status"
istio_sidecar_injector_config_map_name: "istio-sidecar-injector"
istiod_pod_monitoring_port: 15014
root_namespace: ""
prometheus:
auth:
ca_file: ""
insecure_skip_verify: false
password: ""
token: ""
type: "none"
use_kiali_token: false
username: ""
cache_duration: 7
cache_enabled: true
cache_expiration: 300
custom_headers: {}
health_check_url: ""
is_core: true
query_scope: {}
thanos_proxy:
enabled: false
retention_period: "7d"
scrape_interval: "30s"
url: ""
tracing:
auth:
ca_file: ""
insecure_skip_verify: false
password: ""
token: ""
type: "none"
use_kiali_token: false
username: ""
custom_headers: {}
enabled: false
external_url: ""
grpc_port: 9095
health_check_url: ""
internal_url: ""
is_core: false
namespace_selector: true
provider: "jaeger"
query_scope: {}
query_timeout: 5
tempo_config:
datasource_uid: ""
org_id: ""
url_format: ""
use_grpc: true
whitelist_istio_system: ["jaeger-query", "istio-ingressgateway"]
health_config:
rate: []
identity: {}
#cert_file:
#private_key_file:
istio_labels:
app_label_name: "app"
egress_gateway_label: "istio=egressgateway"
ingress_gateway_label: "istio=ingressgateway"
injection_label_name: "istio-injection"
injection_label_rev: "istio.io/rev"
version_label_name: "version"
kiali_feature_flags:
disabled_features: []
istio_annotation_action: true
istio_injection_action: true
istio_upgrade_action: false
ui_defaults:
graph:
find_options:
- auto_select: false
description: "Find: slow edges (> 1s)"
expression: "rt > 1000"
- auto_select: false
description: "Find: unhealthy nodes"
expression: "! healthy"
- auto_select: false
description: "Find: unknown nodes"
expression: "name = unknown"
- auto_select: false
description: "Find: nodes with the 2 top rankings"
expression: "rank <= 2"
hide_options:
- auto_select: false
description: "Hide: healthy nodes"
expression: "healthy"
- auto_select: false
description: "Hide: unknown nodes"
expression: "name = unknown"
- auto_select: false
description: "Hide: nodes ranked lower than the 2 top rankings"
expression: "rank > 2"
settings:
font_label: 13
min_font_badge: 7
min_font_label: 10
traffic:
grpc: "requests"
http: "requests"
tcp: "sent"
list:
include_health: true
include_istio_resources: true
include_validations: true
show_include_toggles: false
metrics_inbound:
aggregations: []
metrics_outbound:
aggregations: []
metrics_per_refresh: "1m"
namespaces: []
refresh_interval: "60s"
validations:
ignore: ["KIA1301"]
skip_wildcard_gateway_hosts: false
kubernetes_config:
burst: 200
cache_duration: 300
cache_token_namespace_duration: 10
cluster_name: ""
excluded_workloads:
- "CronJob"
- "DeploymentConfig"
- "Job"
- "ReplicationController"
qps: 175
login_token:
expiration_seconds: 86400
signing_key: ""
server:
address: ""
audit_log: true
cors_allow_all: false
gzip_enabled: true
#node_port:
observability:
metrics:
enabled: true
port: 9090
tracing:
collector_type: "jaeger"
collector_url: http://jaeger-collector.istio-system:14268/api/traces
enabled: false
otel:
ca_name: ""
protocol: "http"
skip_verify: false
tls_enabled: false
port: 20001
profiler:
enabled: false
web_fqdn: ""
web_history_mode: ""
web_port: ""
web_root: ""
web_schema: ""
write_timeout: 30
# These variables are outside of the kiali_defaults. Their values will be
# auto-detected by the role and are not meant to be set by the user.
# However, for debugging purposes you can change these.
is_k8s: false
is_openshift: false