This repository has been archived by the owner on Apr 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathvalues.yaml
808 lines (731 loc) · 26.4 KB
/
values.yaml
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
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
# Default values for osm.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
osm:
#
# -- OSM control plane image parameters
image:
# -- Container image registry for control plane images
registry: flomesh
# -- Container image pull policy for control plane containers
pullPolicy: IfNotPresent
# -- Container image tag for control plane images
tag: "1.3.9"
# -- Image name defaults
name:
# -- osm-controller's image name
osmController: osm-edge-controller
# -- osm-injector's image name
osmInjector: osm-edge-injector
# -- Sidecar init container's image name
osmSidecarInit: osm-edge-sidecar-init
# -- osm-boostrap's image name
osmBootstrap: osm-edge-bootstrap
# -- osm-crds' image name
osmCRDs: osm-edge-crds
# -- osm-preinstall's image name
osmPreinstall: osm-edge-preinstall
# -- osm-healthcheck's image name
osmHealthcheck: osm-edge-healthcheck
# -- osm-interceptor's image name
osmInterceptor: osm-edge-interceptor
# -- Image digest (defaults to latest compatible tag)
digest:
# -- osm-controller's image digest
osmController: ""
# -- osm-injector's image digest
osmInjector: ""
# -- Sidecar init container's image digest
osmSidecarInit: ""
# -- osm-crds' image digest
osmCRDs: ""
# -- osm-boostrap's image digest
osmBootstrap: ""
# -- osm-preinstall's image digest
osmPreinstall: ""
# -- osm-healthcheck's image digest
osmHealthcheck: ""
# -- osm-interceptor's image digest
osmInterceptor: ""
# -- `osm-controller` image pull secret
imagePullSecrets: [ ]
# -- The class of the OSM Sidecar Driver
sidecarClass: pipy
# -- Sidecar image for Linux workloads
sidecarImage: ""
# -- Sidecar drivers supported by osm-edge
sidecarDrivers:
- sidecarName: pipy
# -- Sidecar image for Linux workloads
sidecarImage: flomesh/pipy:0.90.3-38
# -- Remote destination port on which the Discovery Service listens for new connections from Sidecars.
proxyServerPort: 6060
- sidecarName: envoy
# -- Sidecar image for Linux workloads
sidecarImage: envoyproxy/envoy:v1.19.3
# -- Sidecar image for Windows workloads
sidecarWindowsImage: envoyproxy/envoy-windows:latest
# -- Remote destination port on which the Discovery Service listens for new connections from Sidecars.
proxyServerPort: 15128
# -- Curl image for control plane init container
curlImage: curlimages/curl
# -- Pipy RepoServer
repoServer:
# -- Image used for Pipy RepoServer
image: flomesh/pipy-repo:0.90.3-38
# -- if false , Pipy RepoServer is installed within osmController pod.
standalone: false
# -- ipaddr of host/service where Pipy RepoServer is installed
ipaddr: "127.0.0.1"
# -- codebase is the folder used by osmController.
codebase: ""
pluginChains:
inbound-tcp:
- plugin: modules/inbound-tls-termination
priority: 130
disable: false
- plugin: modules/inbound-tcp-routing
priority: 120
disable: false
- plugin: modules/inbound-tcp-load-balancing
priority: 110
disable: false
- plugin: modules/inbound-tcp-default
priority: 100
disable: false
inbound-http:
- plugin: modules/inbound-tls-termination
priority: 180
- plugin: modules/inbound-http-routing
priority: 170
- plugin: modules/inbound-metrics-http
priority: 160
- plugin: modules/inbound-tracing-http
priority: 150
- plugin: modules/inbound-logging-http
priority: 140
- plugin: modules/inbound-throttle-service
priority: 130
- plugin: modules/inbound-throttle-route
priority: 120
- plugin: modules/inbound-http-load-balancing
priority: 110
- plugin: modules/inbound-http-default
priority: 100
outbound-tcp:
- plugin: modules/outbound-tcp-routing
priority: 120
- plugin: modules/outbound-tcp-load-balancing
priority: 110
- plugin: modules/outbound-tcp-default
priority: 100
outbound-http:
- plugin: modules/outbound-http-routing
priority: 160
- plugin: modules/outbound-metrics-http
priority: 150
- plugin: modules/outbound-tracing-http
priority: 140
- plugin: modules/outbound-logging-http
priority: 130
- plugin: modules/outbound-circuit-breaker
priority: 120
- plugin: modules/outbound-http-load-balancing
priority: 110
- plugin: modules/outbound-http-default
priority: 100
#
# -- OSM controller parameters
osmController:
# -- OSM controller's replica count (ignored when autoscale.enable is true)
replicaCount: 1
# -- OSM controller's container resource parameters. See https://docs.openservicemesh.io/docs/guides/ha_scale/scale/ for more details.
resource:
limits:
cpu: "1.5"
memory: "1G"
requests:
cpu: "0.5"
memory: "128M"
# -- OSM controller's pod labels
podLabels: { }
# -- Enable Pod Disruption Budget
enablePodDisruptionBudget: false
# -- Auto scale configuration
autoScale:
# -- Enable Autoscale
enable: false
# -- Minimum replicas for autoscale
minReplicas: 1
# -- Maximum replicas for autoscale
maxReplicas: 5
cpu:
# -- Average target CPU utilization (%)
targetAverageUtilization: 80
memory:
# -- Average target memory utilization (%)
targetAverageUtilization: 80
## Affinity settings for pod assignment
## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/
affinity:
nodeAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: kubernetes.io/os
operator: In
values:
- linux
- key: kubernetes.io/arch
operator: In
values:
- amd64
- arm64
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- key: app
operator: In
values:
- osm-controller
topologyKey: kubernetes.io/hostname
weight: 100
# -- Node tolerations applied to control plane pods.
# The specified tolerations allow pods to schedule onto nodes with matching taints.
tolerations: [ ]
#
# -- OSM interceptor parameters
osmInterceptor:
kernelTracing: true
cniMode: true
kindMode: false
resource:
limits:
cpu: "1.5"
memory: "1G"
requests:
cpu: "0.5"
memory: "256M"
## Affinity settings for pod assignment
## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/
affinity:
nodeAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: kubernetes.io/os
operator: In
values:
- linux
- key: kubernetes.io/arch
operator: In
values:
- amd64
- arm64
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- key: app
operator: In
values:
- osm-controller
topologyKey: kubernetes.io/hostname
weight: 100
# -- Node tolerations applied to control plane pods.
# The specified tolerations allow pods to schedule onto nodes with matching taints.
tolerations: [ ]
#
# -- Prometheus parameters
prometheus:
# -- Prometheus's container resource parameters
resources:
limits:
cpu: "1"
memory: "2G"
requests:
cpu: "0.5"
memory: "512M"
# -- Prometheus service's port
port: 7070
# -- Prometheus data rentention configuration
retention:
# -- Prometheus data retention time
time: 15d
# -- Image used for Prometheus
image: prom/prometheus:v2.34.0
## Node labels for pod assignment
## Ref: https://kubernetes.io/docs/user-guide/node-selection/
nodeSelector: { }
## Affinity settings for pod assignment
## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/
affinity:
nodeAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: kubernetes.io/os
operator: In
values:
- linux
- key: kubernetes.io/arch
operator: In
values:
- amd64
- arm64
- arm
- ppc64le
- s390x
# -- Node tolerations applied to control plane pods.
# The specified tolerations allow pods to schedule onto nodes with matching taints.
tolerations: [ ]
# -- The trust domain to use as part of the common name when requesting new certificates.
trustDomain: cluster.local
certificateProvider:
# -- The Certificate manager type: `tresor`, `vault` or `cert-manager`
kind: tresor
# -- Service certificate validity duration for certificate issued to workloads to communicate over mTLS
serviceCertValidityDuration: 24h
# -- Certificate key bit size for data plane certificates issued to workloads to communicate over mTLS
certKeyBitSize: 2048
#
# -- Hashicorp Vault configuration
vault:
# -- Hashicorp Vault host/service - where Vault is installed
host: ""
# -- port to use to connect to Vault
port: 8200
# -- protocol to use to connect to Vault
protocol: http
# -- token that should be used to connect to Vault
token: ""
# -- Vault role to be used by Open Service Mesh
role: openservicemesh
# -- The Kubernetes secret storing the Vault token used in OSM. The secret must be located in the namespace of the OSM installation
secret:
# -- The Kubernetes secret name storing the Vault token used in OSM
name: ""
# -- The Kubernetes secret key with the value bring the Vault token
key: ""
#
# -- cert-manager.io configuration
certmanager:
# -- cert-manager issuer namecert-manager issuer name
issuerName: osm-ca
# -- cert-manager issuer kind
issuerKind: Issuer
# -- cert-manager issuer group
issuerGroup: cert-manager.io
# -- The Kubernetes secret name to store CA bundle for the root CA used in OSM
caBundleSecretName: osm-ca-bundle
#
# -- Grafana parameters
grafana:
# -- Grafana service's port
port: 3000
# -- Enable Remote Rendering in Grafana
enableRemoteRendering: false
# -- Image used for Grafana
image: grafana/grafana:8.2.2
# -- Image used for Grafana Renderer
rendererImage: grafana/grafana-image-renderer:3.2.1
## Node labels for pod assignment
## Ref: https://kubernetes.io/docs/user-guide/node-selection/
nodeSelector: { }
## Affinity settings for pod assignment
## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/
affinity:
nodeAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: kubernetes.io/os
operator: In
values:
- linux
- key: kubernetes.io/arch
operator: In
values:
- amd64
- arm64
- arm
- ppc64le
- s390x
# -- Node tolerations applied to control plane pods.
# The specified tolerations allow pods to schedule onto nodes with matching taints.
tolerations: [ ]
# -- Enable the debug HTTP server on OSM controller
enableDebugServer: false
# -- Enable permissive traffic policy mode
enablePermissiveTrafficPolicy: true
# -- Specifies a boolean indicating if load balancing based on request is enabled for http1.
http1PerRequestLoadBalancing: false
# -- Specifies a boolean indicating if load balancing based on request is enabled for http2.
http2PerRequestLoadBalancing: true
# -- Traffic interception mode in the mesh
trafficInterceptionMode: iptables
# -- Enable egress in the mesh
enableEgress: true
# -- Enable reconciler for OSM's CRDs and mutating webhook
enableReconciler: false
# -- Deploy Prometheus with OSM installation
deployPrometheus: false
# -- Deploy Grafana with OSM installation
deployGrafana: false
# -- Deploy Jaeger during OSM installation
deployJaeger: false
# -- Enable Fluent Bit sidecar deployment on OSM controller's pod
enableFluentbit: false
#
# -- FluentBit parameters
fluentBit:
# -- Fluent Bit sidecar container name
name: fluentbit-logger
# -- Registry for Fluent Bit sidecar container
registry: fluent
# -- Fluent Bit sidecar image tag
tag: 1.6.4
# -- PullPolicy for Fluent Bit sidecar container
pullPolicy: IfNotPresent
# -- Fluent Bit output plugin
outputPlugin: stdout
# -- WorkspaceId for Fluent Bit output plugin to Log Analytics
workspaceId: ""
# -- Primary Key for Fluent Bit output plugin to Log Analytics
primaryKey: ""
# -- Enable proxy support toggle for Fluent Bit
enableProxySupport: false
# -- Optional HTTP proxy endpoint for Fluent Bit
httpProxy: ""
# -- Optional HTTPS proxy endpoint for Fluent Bit
httpsProxy: ""
# -- Identifier for the instance of a service mesh within a cluster
meshName: osm
# -- Log level for the proxy sidecar. Non developers should generally never set this value. In production environments the LogLevel should be set to `error`
sidecarLogLevel: error
# -- Proxy mode for the proxy sidecar. Acceptable values are ['Localhost', 'PodIP']
localProxyMode: Localhost
# -- Local DNS Proxy improves the performance of your computer by caching the responses coming from your DNS servers
localDNSProxy:
enable: false
# -- Sets the max data plane connections allowed for an instance of osm-controller, set to 0 to not enforce limits
maxDataPlaneConnections: 0
# -- Sets the resync interval for regular proxy broadcast updates, set to 0s to not enforce any resync
configResyncInterval: "90s"
# -- Sets connect/idle/read/write timeout
sidecarTimeout: 60
# -- Controller log verbosity
controllerLogLevel: info
# -- Enforce only deploying one mesh in the cluster
enforceSingleMesh: true
# -- Prefix used in name of the webhook configuration resources
webhookConfigNamePrefix: osm-webhook
# -- Namespace to deploy OSM in. If not specified, the Helm release namespace is used.
osmNamespace: ""
#
# -- Tracing parameters
#
# The following section configures a destination collector where tracing
# data is sent to. Current implementation supports only Zipkin format
# backends (https://github.com/openservicemesh/osm/issues/1596)
tracing:
# -- Toggles Sidecar's tracing functionality on/off for all sidecar proxies in the mesh
enable: false
# -- Address of the tracing collector service (must contain the namespace). When left empty, this is computed in helper template to "jaeger.<osm-namespace>.svc.cluster.local". Please override for BYO-tracing as documented in tracing.md
address: ""
# -- Port of the tracing collector service
port: 9411
# -- Tracing collector's API path where the spans will be sent to
endpoint: "/api/v2/spans"
# -- Sampled Fraction
sampledFraction: "1.0"
# -- Image used for tracing
image: jaegertracing/all-in-one
## Node labels for pod assignment
## Ref: https://kubernetes.io/docs/user-guide/node-selection/
nodeSelector: { }
## Affinity settings for pod assignment
## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/
affinity:
nodeAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: kubernetes.io/os
operator: In
values:
- linux
- key: kubernetes.io/arch
operator: In
values:
- amd64
- arm64
- ppc64le
- s390x
# -- Node tolerations applied to control plane pods.
# The specified tolerations allow pods to schedule onto nodes with matching taints.
tolerations: [ ]
#
# -- Remote logging parameters
#
# The following section configures a remote server where logging
# data is sent to.
remoteLogging:
# -- Toggles Sidecar's remote logging functionality on/off for all sidecar proxies in the mesh
enable: false
# -- Level of the remote logging service
level: 2
# -- Address of the remote logging service (must contain the namespace). When left empty, this is computed in helper template to "remote-logging-service.<osm-namespace>.svc.cluster.local".
address: ""
# -- Port of the remote logging service
port: 30514
# -- Remote logging's API path where the spans will be sent to
endpoint: ""
# -- The authorization for remote logging service
authorization: ""
# -- Sampled Fraction
sampledFraction: "1.0"
# -- Specifies a global list of IP ranges to exclude from outbound traffic interception by the sidecar proxy.
# If specified, must be a list of IP ranges of the form a.b.c.d/x.
outboundIPRangeExclusionList: [ ]
# -- Specifies a global list of IP ranges to include for outbound traffic interception by the sidecar proxy.
# If specified, must be a list of IP ranges of the form a.b.c.d/x.
outboundIPRangeInclusionList: [ ]
# -- Specifies a global list of ports to exclude from outbound traffic interception by the sidecar proxy.
# If specified, must be a list of positive integers.
outboundPortExclusionList: [ ]
# -- Specifies a global list of ports to exclude from inbound traffic interception by the sidecar proxy.
# If specified, must be a list of positive integers.
inboundPortExclusionList: [ ]
# -- Specifies a global list of network interface names to exclude for inbound and outbound traffic interception by the sidecar proxy.
networkInterfaceExclusionList: [ ]
#
# -- OSM's sidecar injector parameters
injector:
# -- Sidecar injector's replica count (ignored when autoscale.enable is true)
replicaCount: 1
# -- Sidecar injector's container resource parameters
resource:
limits:
cpu: "0.5"
memory: "64M"
requests:
cpu: "0.3"
memory: "64M"
# -- Sidecar injector's pod labels
podLabels: { }
# -- Enable Pod Disruption Budget
enablePodDisruptionBudget: false
# -- Auto scale configuration
autoScale:
# -- Enable Autoscale
enable: false
# -- Minimum replicas for autoscale
minReplicas: 1
# -- Maximum replicas for autoscale
maxReplicas: 5
cpu:
# -- Average target CPU utilization (%)
targetAverageUtilization: 80
memory:
# -- Average target memory utilization (%)
targetAverageUtilization: 80
# -- Mutating webhook timeout
webhookTimeoutSeconds: 20
## Node labels for pod assignment
## Ref: https://kubernetes.io/docs/user-guide/node-selection/
nodeSelector: { }
## Affinity settings for pod assignment
## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/
affinity:
nodeAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: kubernetes.io/os
operator: In
values:
- linux
- key: kubernetes.io/arch
operator: In
values:
- amd64
- arm64
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- key: app
operator: In
values:
- osm-injector
topologyKey: kubernetes.io/hostname
weight: 100
# -- Node tolerations applied to control plane pods.
# The specified tolerations allow pods to schedule onto nodes with matching taints.
tolerations: [ ]
# -- Run init container in privileged mode
enablePrivilegedInitContainer: false
#
# -- Feature flags for experimental features
featureFlags:
# -- Enable extra Envoy statistics generated by a custom WASM extension
enableWASMStats: false
# -- Enable OSM's Egress policy API.
# When enabled, fine grained control over Egress (external) traffic is enforced
enableEgressPolicy: true
# -- Enable async proxy-service mapping
enableAsyncProxyServiceMapping: false
# -- Enables OSM's IngressBackend policy API.
# When enabled, OSM will use the IngressBackend API allow ingress traffic to mesh backends
enableIngressBackendPolicy: true
# -- Enables OSM's AccessControl policy API.
# When enabled, OSM will use the AccessControl API allow access control traffic to mesh backends
enableAccessControlPolicy: false
# When enabled, OSM can issue certificates for external services.
enableAccessCertPolicy: false
# -- Enable Sidecar active health checks
enableSidecarActiveHealthChecks: false
# -- Enables SnapshotCache feature for Sidecar xDS server.
enableSnapshotCacheMode: false
# -- Enable Retry Policy for automatic request retries
enableRetryPolicy: false
# -- Enable Plugin Policy for extend
enablePluginPolicy: false
# -- Enable the MeshRootCertificate to configure the OSM certificate provider
enableMeshRootCertificate: false
# -- Node tolerations applied to control plane pods.
# The specified tolerations allow pods to schedule onto nodes with matching taints.
controlPlaneTolerations: [ ]
#
# -- OSM bootstrap parameters
osmBootstrap:
# -- OSM bootstrap's replica count
replicaCount: 1
# -- OSM bootstrap's container resource parameters
resource:
limits:
cpu: "0.5"
memory: "128M"
requests:
cpu: "0.3"
memory: "128M"
# -- OSM bootstrap's pod labels
podLabels: { }
## Affinity settings for pod assignment
## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/
affinity:
nodeAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: kubernetes.io/os
operator: In
values:
- linux
- key: kubernetes.io/arch
operator: In
values:
- amd64
- arm64
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- key: app
operator: In
values:
- osm-bootstrap
topologyKey: kubernetes.io/hostname
weight: 100
## Node labels for pod assignment
## Ref: https://kubernetes.io/docs/user-guide/node-selection/
nodeSelector: { }
# -- Node tolerations applied to control plane pods.
# The specified tolerations allow pods to schedule onto nodes with matching taints.
tolerations: [ ]
#
# -- OSM resource validator webhook configuration
validatorWebhook:
# -- Name of the ValidatingWebhookConfiguration
webhookConfigurationName: ""
#
# -- OSM's preinstall hook parameters
preinstall:
## Affinity settings for pod assignment
## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/
affinity:
nodeAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: kubernetes.io/os
operator: In
values:
- linux
- key: kubernetes.io/arch
operator: In
values:
- amd64
- arm64
## Node labels for pod assignment
## Ref: https://kubernetes.io/docs/user-guide/node-selection/
nodeSelector: { }
# -- Node tolerations applied to control plane pods.
# The specified tolerations allow pods to schedule onto nodes with matching taints.
tolerations: [ ]
cleanup:
## Node labels for pod assignment
## Ref: https://kubernetes.io/docs/user-guide/node-selection/
nodeSelector: { }
## Affinity settings for pod assignment
## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/
affinity:
nodeAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: kubernetes.io/os
operator: In
values:
- linux
- key: kubernetes.io/arch
operator: In
values:
- amd64
- arm64
# -- Node tolerations applied to control plane pods.
# The specified tolerations allow pods to schedule onto nodes with matching taints.
tolerations: [ ]
#
# -- Contour configuration
contour:
# -- Enables deployment of Contour control plane and gateway
enabled: false
# -- Contour controller configuration
contour:
image:
registry: ghcr.io
repository: projectcontour/contour
tag: v1.21.1
# -- Contour envoy edge proxy configuration
envoy:
image:
registry: docker.io
repository: envoyproxy/envoy-distroless
tag: v1.22.2
#
# -- SMI configuration
smi:
# -- Enables validation of SMI Traffic Target
validateTrafficTarget: true
#
# -- FSM configuration
fsm:
# -- Enables deployment of fsm control plane and gateway
enabled: false