-
Notifications
You must be signed in to change notification settings - Fork 3
/
values.yaml
1111 lines (1074 loc) · 47.6 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
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
## @section Global parameters
## @descriptionStart
## Global Docker image parameters
## Please, note that this will override the image parameters, including dependencies, configured to use the global value
## Current available global Docker image parameters: imageRegistry, imagePullSecrets and storageClass
## @descriptionEnd
## @param global.imageRegistry Global Docker image registry
## @param global.imagePullSecrets Global Docker registry secret names as an array
## @param global.storageClass Global StorageClass for Persistent Volume(s)
##
global:
imageRegistry: ""
## E.g.
## imagePullSecrets:
## - myRegistryKeySecretName
##
imagePullSecrets: []
storageClass: ""
## @section Common parameters
##
## @param nameOverride String to partially override common.names.name
##
nameOverride: ""
## @param fullnameOverride String to fully override common.names.fullname
##
fullnameOverride: ""
## @param namespaceOverride String to fully override common.names.namespace
##
namespaceOverride: ""
## @param commonLabels Labels to add to all deployed objects
##
commonLabels: {}
## @param commonAnnotations Annotations to add to all deployed objects
##
commonAnnotations: {}
## @param clusterDomain Kubernetes cluster domain name
##
clusterDomain: cluster.local
## @param extraDeploy Array of extra objects to deploy with the release
##
extraDeploy: []
## Enable diagnostic mode in the deployment
##
diagnosticMode:
## @param diagnosticMode.enabled Enable diagnostic mode (all probes will be disabled and the command will be overridden)
##
enabled: false
## @param diagnosticMode.command Command to override all containers in the deployment
##
command:
- sleep
## @param diagnosticMode.args Args to override all containers in the deployment
##
args:
- infinity
## @section Platform product Parameters
## @descriptionStart
## You can paste here your Conduktor Console Configuration.
##
## Refer to our [documentation](https://docs.conduktor.io/platform/configuration/env-variables/) for the full list of product configuration properties.
##
## A list of Kafka clusters can be configured by adding them under the `config.clusters` key. See [Install with a Kafka cluster](#install-with-a-kafka-cluster) below. Alternatively, clusters can be added in the Console UI.
## @descriptionEnd
config:
## @param config.organization.name Your Conduktor Console Organization. Default is `Conduktor` if not set.
## Could be provided via an existing secret with `config.existingSecret` using the key `CDK_ORGANIZATION_NAME`.
organization:
name: "Conduktor"
admin:
## @param config.admin.email Your Conduktor Console Admin email. If changed a new admin user will be created with this email and previous admin user will still be available
## Could be provided via an existing secret with `config.existingSecret` using the key `CDK_ADMIN_EMAIL`.
email: ""
## @param config.admin.password Your Conduktor Console Admin password. If change current admin user password will be updated.
## Could be provided via an existing secret with `config.existingSecret` using the key `CDK_ADMIN_PASSWORD`.
password: ""
## @param config.database.host Your Conduktor Console Database host
## @param config.database.port Your Conduktor Console Database port
## @param config.database.name Your Conduktor Console Database name
## @param config.database.username Your Conduktor Console Database username
## Could be provided via an existing secret with `config.existingSecret` using the key `CDK_DATABASE_PASSWORD`.
## @param config.database.password Your Conduktor Console Database password
## Could be provided via an existing secret with `config.existingSecret` using the key `CDK_DATABASE_USERNAME`.
database:
host: ""
port: 5432
name: "postgres"
password: ""
username: ""
## @param config.license Conduktor Console Enterprise license, if none given, the product will run in free tier
license: ""
## @param config.existingLicenseSecret Name of an existing secret containing the license
##
## Secret should just contain key "CDK_LICENSE" with the license as value
## NOTE: 'config.license' will be ignored
existingLicenseSecret: ""
## @param config.existingSecret Name of an existing secret containing sensitive configuration
##
## Secret should contain below keys:
## - "CDK_ORGANIZATION_NAME": name of the organization
## - "CDK_ADMIN_EMAIL" : email of the admin user
## - "CDK_ADMIN_PASSWORD" : password of the admin user
## - "CDK_DATABASE_PASSWORD": password of the database
## - "CDK_DATABASE_USERNAME": username of the database
##
## NOTE: 'config.organization.name', 'config.admin.email', 'config.admin.password',
## 'config.database.username', 'config.database.password' will be ignored
existingSecret: ""
platform:
## @param config.platform.external.url Force the platform to redirect and use this URL (useful when behind a proxy to fix SSO issues)
external:
url: ""
https:
## @param config.platform.https.selfSigned Enable HTTPS with a self-signed certificate (not recommended for production) based on 'config.platform.external.url' (required).
##
## NOTE: 'config.platform.https.cert.path' and 'config.platform.https.key.path' will be ignored
selfSigned: false
## @param config.platform.https.existingSecret Enable HTTPS with an existing secret containing the tls.crt and tls.key (required).
##
## NOTE: 'config.platform.https.cert.path', 'config.platform.https.key.path'
## and 'config.platform.https.selfSigned' will be ignored
existingSecret: ""
## @section Platform Monitoring product Parameters
## @descriptionStart
## You can paste here your Conduktor Console Cortex Configuration.
##
## Refer to our [documentation](https://docs.conduktor.io/platform/configuration/cortex/) for the full list of product configuration properties.
## @descriptionEnd
monitoringConfig:
## @param monitoringConfig.existingSecret The name of an existing Secret with your custom configuration for Conduktor Console Cortex
##
## NOTE: If set, corresponding secrets keys are ignored in monitoringConfig.storage
## The secret must contain the following keys:
## CDK_MONITORING_STORAGE_S3_ACCESSKEYID and CDK_MONITORING_STORAGE_S3_SECRETACCESSKEY. To leverage IRSA leave these commented out in your S3 config
## or
## CDK_MONITORING_STORAGE_GCS_SERVICEACCOUNT
## or
## CDK_MONITORING_STORAGE_AZURE_ACCOUNTNAME and CDK_MONITORING_STORAGE_AZURE_ACCOUNTKEY
## or
## CDK_MONITORING_STORAGE_SWIFT_PASSWORD and CDK_MONITORING_STORAGE_SWIFT_USERID or CDK_MONITORING_STORAGE_SWIFT_USERNAME
existingSecret: ""
scraper:
## @param monitoringConfig.scraper.skipSSLCheck Skip TLS verification when scraping Platform metrics
skipSSLCheck: false
## @param monitoringConfig.scraper.caFile Skip TLS verification when scraping Platform metrics
caFile: ""
storage:
## S3 storage configuration
## @param monitoringConfig.storage.s3 S3 storage configuration
## @extra monitoringConfig.storage.s3.endpoint S3 endpoint
## @extra monitoringConfig.storage.s3.region S3 region
## @extra monitoringConfig.storage.s3.bucket S3 bucket name
## @extra monitoringConfig.storage.s3.insecure S3 insecure
## @extra monitoringConfig.storage.s3.accessKeyId S3 access key id
## @extra monitoringConfig.storage.s3.secretAccessKey S3 secret access key
s3: {}
## endpoint: ""
## region: ""
## bucket: ""
## insecure: "false"
## accessKeyId: ""
## secretAccessKey: ""
## GCS storage configuration
## @param monitoringConfig.storage.gcs GCS storage configuration
## @extra monitoringConfig.storage.gcs.bucketName GCS bucket name
## @extra monitoringConfig.storage.gcs.serviceAccount GCS service account
gcs: {}
## bucketName: ""
## serviceAccount: ""
## Azure storage configuration
## @param monitoringConfig.storage.azure Azure storage configuration
## @extra monitoringConfig.storage.azure.accountName Azure account name
## @extra monitoringConfig.storage.azure.accountKey Azure account key
## @extra monitoringConfig.storage.azure.containerName Azure container name
## @extra monitoringConfig.storage.azure.endpointSuffix Azure endpoint suffix
azure: {}
## accountName: ""
## accountKey: ""
## containerName: ""
## endpointSuffix: "blob.core.windows.net"
## Swift storage configuration
## @param monitoringConfig.storage.swift Swift storage configuration
## @extra monitoringConfig.storage.swift.authUrl Swift auth url
## @extra monitoringConfig.storage.swift.password Swift password
## @extra monitoringConfig.storage.swift.containerName Swift container name
## @extra monitoringConfig.storage.swift.userId Swift user id
## @extra monitoringConfig.storage.swift.username Swift username
## @extra monitoringConfig.storage.swift.userDomainName Swift user domain name
## @extra monitoringConfig.storage.swift.userDomainId Swift user domain id
## @extra monitoringConfig.storage.swift.domainId Swift domain id
## @extra monitoringConfig.storage.swift.domainName Swift domain name
## @extra monitoringConfig.storage.swift.projectId Swift project id
## @extra monitoringConfig.storage.swift.regionName Swift region name
swift: {}
## authUrl: ""
## password: ""
## containerName: ""
## userId: ""
## username: ""
## userDomainName: ""
## userDomainId: ""
## domainId: ""
## domainName: ""
## projectId: ""
## regionName: ""
## @section Platform Deployment Parameters
##
## Conduktor Console container configuration
##
platform:
## Conduktor Console image
## ref: https://hub.docker.com/r/conduktor/conduktor-console/tags/
## @param platform.image.registry Conduktor Console image registry
## @param platform.image.repository Conduktor Console image repository
## @param platform.image.tag Conduktor Console image tag (immutable tags are recommended)
## @param platform.image.digest Conduktor Console image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag image tag (immutable tags are recommended)
## @param platform.image.pullPolicy Conduktor Console image pull policy
## @param platform.image.pullSecrets Conduktor Console image pull secrets
## @param platform.image.debug Enable Conduktor Console image debug mode
##
image:
registry: docker.io
repository: conduktor/conduktor-console
tag: 1.29.2
digest: ""
## Specify a imagePullPolicy
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images
##
pullPolicy: IfNotPresent
## Optionally specify an array of imagePullSecrets.
## Secrets must be manually created in the namespace.
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
## e.g:
## pullSecrets:
## - myRegistryKeySecretName
##
pullSecrets: []
## Enable debug mode
##
debug: false
## @param platform.replicaCount Number of Conduktor Console replicas to deploy
##
replicaCount: 1
## @param platform.containerPorts.http Conduktor Console HTTP (or HTTPS if configured) container port
##
containerPorts:
http: 8080
## Configure extra options for Conduktor Console containers' liveness and readiness probes
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes
## @param platform.livenessProbe.enabled Enable livenessProbe on Conduktor Console containers
## @param platform.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe
## @param platform.livenessProbe.periodSeconds Period seconds for livenessProbe
## @param platform.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe
## @param platform.livenessProbe.failureThreshold Failure threshold for livenessProbe
## @param platform.livenessProbe.successThreshold Success threshold for livenessProbe
##
livenessProbe:
enabled: true
initialDelaySeconds: 60
periodSeconds: 10
timeoutSeconds: 5
failureThreshold: 3
successThreshold: 1
## @param platform.readinessProbe.enabled Enable readinessProbe on Conduktor Console containers
## @param platform.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe
## @param platform.readinessProbe.periodSeconds Period seconds for readinessProbe
## @param platform.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe
## @param platform.readinessProbe.failureThreshold Failure threshold for readinessProbe
## @param platform.readinessProbe.successThreshold Success threshold for readinessProbe
##
readinessProbe:
enabled: true
initialDelaySeconds: 60
periodSeconds: 10
timeoutSeconds: 5
failureThreshold: 3
successThreshold: 1
## @param platform.startupProbe.enabled Enable startupProbe on Conduktor Console containers
## @param platform.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe
## @param platform.startupProbe.periodSeconds Period seconds for startupProbe
## @param platform.startupProbe.timeoutSeconds Timeout seconds for startupProbe
## @param platform.startupProbe.failureThreshold Failure threshold for startupProbe
## @param platform.startupProbe.successThreshold Success threshold for startupProbe
##
startupProbe:
enabled: true
initialDelaySeconds: 10
periodSeconds: 10
timeoutSeconds: 5
failureThreshold: 10
successThreshold: 1
## @param platform.customLivenessProbe Custom livenessProbe that overrides the default one
##
customLivenessProbe: {}
## @param platform.customReadinessProbe Custom readinessProbe that overrides the default one
##
customReadinessProbe: {}
## @param platform.customStartupProbe Custom startupProbe that overrides the default one
##
customStartupProbe: {}
## Conduktor Console resource requests and limits
## ref: http://kubernetes.io/docs/user-guide/compute-resources/
##
resources:
limits:
## @param platform.resources.limits.cpu CPU limit for the platform container
cpu: 3000m
## @param platform.resources.limits.memory Memory limit for the container
memory: 4Gi
requests:
## @param platform.resources.requests.cpu CPU resource requests
cpu: 1000m
## @param platform.resources.requests.memory Memory resource requests
memory: 2Gi
## @param platform.podSecurityContext Conduktor Console Pod Security Context
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
## default:
## securityContext:
## readOnlyRootFilesystem: true
## runAsNonRoot: true
##
podSecurityContext: {}
## @param platform.containerSecurityContext Conduktor Console containers' Security Context
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container
## default:
## securityContext:
## readOnlyRootFilesystem: true
## runAsNonRoot: true
##
containerSecurityContext: {}
## @param platform.existingConfigmap The name of an existing ConfigMap with your custom configuration for Conduktor Console
##
## ConfigMap must contain a key named `platform-config.yaml` with the configuration as yaml
existingConfigmap: ""
## @param platform.command Override default container command (useful when using custom images)
##
command: []
## @param platform.args Override default container args (useful when using custom images)
##
args: []
## @param platform.hostAliases Conduktor Console pods host aliases
## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/
##
hostAliases: []
## @param platform.podLabels Extra labels for Conduktor Console pods
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
##
podLabels: {}
## @param platform.podAnnotations Annotations for Conduktor Console pods
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
##
podAnnotations: {}
## @param platform.podAffinityPreset Pod affinity preset. Ignored if `platform.affinity` is set. Allowed values: `soft` or `hard`
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
##
podAffinityPreset: ""
## @param platform.podAntiAffinityPreset Pod anti-affinity preset. Ignored if `platform.affinity` is set. Allowed values: `soft` or `hard`
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
##
podAntiAffinityPreset: soft
## Node platform.affinity preset
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity
##
nodeAffinityPreset:
## @param platform.nodeAffinityPreset.type Node affinity preset type. Ignored if `platform.affinity` is set. Allowed values: `soft` or `hard`
##
type: ""
## @param platform.nodeAffinityPreset.key Node label key to match. Ignored if `platform.affinity` is set
##
key: ""
## @param platform.nodeAffinityPreset.values Node label values to match. Ignored if `platform.affinity` is set
## E.g.
## values:
## - e2e-az1
## - e2e-az2
##
values: []
## @param platform.affinity Affinity for Conduktor Console pods assignment
## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
## NOTE: `platform.podAffinityPreset`, `platform.podAntiAffinityPreset`, and `platform.nodeAffinityPreset` will be ignored when it's set
##
affinity: {}
## @param platform.nodeSelector Node labels for Conduktor Console pods assignment
## ref: https://kubernetes.io/docs/user-guide/node-selection/
##
nodeSelector: {}
## @param platform.tolerations Tolerations for Conduktor Console pods assignment
## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
##
tolerations: []
## @param platform.updateStrategy.type Conduktor Console statefulset strategy type
## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies
##
updateStrategy:
## StrategyType
## Can be set to RollingUpdate, OnDelete or Recreate
##
type: RollingUpdate
## @param platform.priorityClassName Conduktor Console pods' priorityClassName
##
priorityClassName: ""
## @param platform.topologySpreadConstraints Topology Spread Constraints for pod assignment spread across your cluster among failure-domains. Evaluated as a template
## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#spread-constraints-for-pods
##
topologySpreadConstraints: []
## @param platform.schedulerName Name of the k8s scheduler (other than default) for Conduktor Console pods
## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/
##
schedulerName: ""
## @param platform.terminationGracePeriodSeconds Seconds Redmine pod needs to terminate gracefully
## ref: https://kubernetes.io/docs/concepts/workloads/pods/pod/#termination-of-pods
##
terminationGracePeriodSeconds: ""
## @param platform.lifecycleHooks for the Conduktor Console container(s) to automate configuration before or after startup
##
lifecycleHooks: {}
## @param platform.dataVolume Configure the data volume to store Conduktor Console data
## default:
## emptyDir: {}
dataVolume: {}
## @param platform.tmpVolume Configure the /tmp volume which store various data related to running services
## default:
## emptyDir: {}
tmpVolume: {}
## @param platform.extraEnvVars Array with extra environment variables to add to Conduktor Console nodes
## ref: https://docs.conduktor.io/platform/configuration/env-variables/
## e.g:
## extraEnvVars:
## - name: FOO
## value: "bar"
##
extraEnvVars: []
## @param platform.extraEnvVarsCM Name of existing ConfigMap containing extra env vars for Conduktor Console nodes
## ref: https://docs.conduktor.io/platform/configuration/env-variables/
##
extraEnvVarsCM: ""
## @param platform.extraEnvVarsSecret Name of existing Secret containing extra env vars for Conduktor Console nodes
## ref: https://docs.conduktor.io/platform/configuration/env-variables/
##
extraEnvVarsSecret: ""
## @param platform.extraVolumes Optionally specify extra list of additional volumes for the Conduktor Console pod(s).
##
extraVolumes: []
## @param platform.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Conduktor Console container(s).
##
extraVolumeMounts: []
## @param platform.sidecars Add additional sidecar containers to the Conduktor Console pod(s)
## e.g:
## sidecars:
## - name: your-image-name
## image: your-image
## imagePullPolicy: Always
## ports:
## - name: portname
## containerPort: 1234
##
sidecars: []
## @param platform.initContainers Add additional init containers to the Conduktor Console pod(s)
## ref: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/
## e.g:
## initContainers:
## - name: your-image-name
## image: your-image
## imagePullPolicy: Always
## command: ['sh', '-c', 'echo "hello world"']
##
initContainers: []
## @section Conduktor-gateway metrics activation
## @descriptionStart
## Console expose metrics that could be collected and presented if your environment have the necessary components (Prometheus and Grafana operators)
## @descriptionEnd
metrics:
## @param platform.metrics.enabled Enable the export of Prometheus metrics
##
enabled: false
## Prometheus Operator ServiceMonitor configuration
##
serviceMonitor:
## @param platform.metrics.serviceMonitor.enabled if `true`, creates a Prometheus Operator ServiceMonitor (also requires `metrics.enabled` to be `true`)
##
enabled: false
## @param platform.metrics.serviceMonitor.namespace Namespace in which Prometheus is running
##
namespace: ""
## @param platform.metrics.serviceMonitor.annotations Additional custom annotations for the ServiceMonitor
##
annotations: {}
## @param platform.metrics.serviceMonitor.labels Extra labels for the ServiceMonitor
##
labels: {}
## @param platform.metrics.serviceMonitor.jobLabel The name of the label on the target service to use as the job name in Prometheus
##
jobLabel: "app.kubernetes.io/name"
## @param platform.metrics.serviceMonitor.honorLabels honorLabels chooses the metric's labels on collisions with target labels
##
honorLabels: false
## @param platform.metrics.serviceMonitor.interval Interval at which metrics should be scraped.
## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint
## e.g:
## interval: 10s
##
interval: ""
## @param platform.metrics.serviceMonitor.scrapeTimeout Timeout after which the scrape is ended
## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint
## e.g:
## scrapeTimeout: 10s
##
scrapeTimeout: ""
## @param platform.metrics.serviceMonitor.metricRelabelings Specify additional relabeling of metrics
##
metricRelabelings: []
## @param platform.metrics.serviceMonitor.relabelings Specify general relabeling
##
relabelings: []
## @param platform.metrics.serviceMonitor.selector Prometheus instance selector labels
## ref: https://github.com/bitnami/charts/tree/main/bitnami/prometheus-operator#prometheus-configuration
## selector:
## prometheus: my-prometheus
##
selector: {}
## @param platform.metrics.serviceMonitor.extraParams Extra parameters for the ServiceMonitor
## extraParams:
## basicAuth:
## password:
## name: conduktor-admin-user # secret name
## key: password
## username:
## name: conduktor-admin-user # secret name
## key: username
##
extraParams: {}
## Grafana dashboard (need grafana operator or sidecar to be enabled on namespace)
## refs:
## - Grafana sidecar : https://github.com/grafana/helm-charts/tree/main/charts/grafana#sidecar-for-dashboards
## - Grafana operator : https://grafana.github.io/grafana-operator/docs/dashboards/
##
grafana:
## @param platform.metrics.grafana.enabled Enable grafana dashboards to installation
##
enabled: false
## @param platform.metrics.grafana.namespace Namespace used to deploy Grafana dashboards by default use the same namespace as Conduktor Csonsole
##
namespace: ""
## @param platform.metrics.grafana.matchLabels Label selector for Grafana instance
##
matchLabels: {}
## @param platform.metrics.grafana.labels Additional custom labels for Grafana dashboard ConfigMap
##
labels: {}
## @param platform.metrics.grafana.folder Grafana dashboard folder name
##
folder: ""
datasources:
## @param platform.metrics.grafana.datasources.prometheus Prometheus datasource to use for metric dashboard
##
prometheus: prometheus
## @section Traffic Exposure Parameters
##
## Conduktor Console service parameters
##
service:
## @param service.type Conduktor Console service type
##
# among ClusterIP, NodePort, LoadBalancer
type: ClusterIP
## @param service.ports.http Conduktor Console service HTTP port
##
ports:
http: 80
## Node ports to expose
## @param service.nodePorts.http Node port for HTTP
## NOTE: choose port between <30000-32767>
##
nodePorts:
http: ""
## @param service.clusterIP Conduktor Console service Cluster IP
## e.g.:
## clusterIP: None
##
clusterIP: ""
## @param service.loadBalancerSourceRanges Conduktor Console service Load Balancer sources
## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service
## e.g:
## loadBalancerSourceRanges:
## - 10.10.10.0/24
##
loadBalancerSourceRanges: []
## @param service.externalTrafficPolicy Conduktor Console service external traffic policy
## ref http://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip
##
externalTrafficPolicy: Cluster
## @param service.labels Additional custom labels for Conduktor Console service
##
labels: {}
## @param service.annotations Additional custom annotations for Conduktor Console service
##
annotations: {}
## @param service.extraPorts Extra ports to expose in Conduktor Console service (normally used with the `sidecars` value)
##
extraPorts: []
## @param service.sessionAffinity Control where client requests go, to the same pod or round-robin
## Values: ClientIP or None
## ref: https://kubernetes.io/docs/user-guide/services/
##
sessionAffinity: None
## @param service.sessionAffinityConfig Additional settings for the sessionAffinity
## sessionAffinityConfig:
## clientIP:
## timeoutSeconds: 300
##
sessionAffinityConfig: {}
## Conduktor Console ingress parameters
## ref: http://kubernetes.io/docs/user-guide/ingress/
##
ingress:
## @param ingress.enabled Enable ingress record generation for Conduktor Console
##
enabled: false
## @param ingress.pathType Ingress path type
##
pathType: ImplementationSpecific
## @param ingress.apiVersion Force Ingress API version (automatically detected if not set)
##
apiVersion: ""
## @param ingress.hostname Default host for the ingress record
hostname: platform.local
## @param ingress.ingressClassName IngressClass that will be used to implement the Ingress (Kubernetes 1.18+)
## This is supported in Kubernetes 1.18+ and required if you have more than one IngressClass marked as the default for your cluster .
## ref: https://kubernetes.io/blog/2020/04/02/improvements-to-the-ingress-api-in-kubernetes-1.18/
##
ingressClassName: ""
## @param ingress.path Default path for the ingress record
## NOTE: You may need to set this to '/*' in order to use this with ALB ingress controllers
##
path: /
## @param ingress.annotations Additional annotations for the Ingress resource. To enable certificate autogeneration, place here your cert-manager annotations.
## Use this parameter to set the required annotations for cert-manager, see
## ref: https://cert-manager.io/docs/usage/ingress/#supported-annotations
## e.g:
## annotations:
## kubernetes.io/ingress.class: nginx
## cert-manager.io/cluster-issuer: cluster-issuer-name
##
annotations: {}
## @param ingress.tls Enable TLS configuration for the host defined at `ingress.hostname` parameter
## TLS certificates will be retrieved from a TLS secret with name: `{{- printf "%s-tls" .Values.ingress.hostname }}`
## You can:
## - Use the `ingress.secrets` parameter to create this TLS secret
## - Rely on cert-manager to create it by setting the corresponding annotations
## - Rely on Helm to create self-signed certificates by setting `ingress.selfSigned=true`
##
tls: false
## @param ingress.selfSigned Create a TLS secret for this ingress record using self-signed certificates generated by Helm
##
selfSigned: false
## @param ingress.extraHosts An array with additional hostname(s) to be covered with the ingress record
## e.g:
## extraHosts:
## - name: platform.local
## path: /
##
extraHosts: []
## @param ingress.extraPaths An array with additional arbitrary paths that may need to be added to the ingress under the main host
## e.g:
## extraPaths:
## - path: /*
## backend:
## serviceName: ssl-redirect
## servicePort: use-annotation
##
extraPaths: []
## @param ingress.extraTls TLS configuration for additional hostname(s) to be covered with this ingress record
## ref: https://kubernetes.io/docs/concepts/services-networking/ingress/#tls
## e.g:
## extraTls:
## - hosts:
## - platform.local
## secretName: platform.local-tls
##
extraTls: []
## @param ingress.secrets Custom TLS certificates as secrets
## NOTE: 'key' and 'certificate' are expected in PEM format
## NOTE: 'name' should line up with a 'secretName' set further up
## If it is not set and you're using cert-manager, this is unneeded, as it will create a secret for you with valid certificates
## If it is not set and you're NOT using cert-manager either, self-signed certificates will be created valid for 365 days
## It is also possible to create and manage the certificates outside of this helm chart
## e.g:
## secrets:
## - name: platform.local-tls
## key: |-
## -----BEGIN RSA PRIVATE KEY-----
## ...
## -----END RSA PRIVATE KEY-----
## certificate: |-
## -----BEGIN CERTIFICATE-----
## ...
## -----END CERTIFICATE-----
##
secrets: []
## @param ingress.extraRules Additional rules to be covered with this ingress record
## ref: https://kubernetes.io/docs/concepts/services-networking/ingress/#ingress-rules
## e.g:
## extraRules:
## - host: example.local
## http:
## path: /
## backend:
## service:
## name: example-svc
## port:
## name: http
##
extraRules: []
## @section Other Parameters
##
## ServiceAccount configuration for the Conduktor Console pods
##
serviceAccount:
## @param serviceAccount.create Specifies whether a ServiceAccount should be created
##
create: true
## @param serviceAccount.name The name of the ServiceAccount to use.
## If not set and create is true, a name is generated using the common.names.fullname template
##
name: ""
## @param serviceAccount.annotations Additional Service Account annotations (evaluated as a template)
##
annotations: {}
## @param serviceAccount.automountServiceAccountToken Automount service account token for the server service account
##
automountServiceAccountToken: true
## @section Platform Cortex Parameters
##
## Conduktor Console Cortex container configuration
##
platformCortex:
## @param platformCortex.enabled Enable Conduktor Console Cortex
##
enabled: true
## Conduktor Console Cortex image
## ref: https://hub.docker.com/r/conduktor/conduktor-console-cortex/tags/
## @param platformCortex.image.registry Conduktor Console Cortex image registry
## @param platformCortex.image.repository Conduktor Console Cortex image repository
## @param platformCortex.image.tag Conduktor Console Cortex image tag (immutable tags are recommended)
## @param platformCortex.image.digest Conduktor Console Cortex image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag image tag (immutable tags are recommended)
## @param platformCortex.image.pullPolicy Conduktor Console Cortex image pull policy
## @param platformCortex.image.pullSecrets Conduktor Console Cortex image pull secrets
## @param platformCortex.image.debug Enable Conduktor Console Cortex image debug mode
##
image:
registry: docker.io
repository: conduktor/conduktor-console-cortex
tag: 1.29.2
digest: ""
## Specify a imagePullPolicy
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images
##
pullPolicy: IfNotPresent
## Optionally specify an array of imagePullSecrets.
## Secrets must be manually created in the namespace.
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
## e.g:
## pullSecrets:
## - myRegistryKeySecretName
##
pullSecrets: []
## Enable debug mode
##
debug: false
## This is an EXPERIMENTAL parameter as the behavior of multiple Cortex instances is not yet fully defined.
## We recommend keeping replicaCount set to 1 to prevent potential issues or instability.
## @param platformCortex.replicaCount Number of Conduktor Console Cortex replicas to deploy
##
replicaCount: 1
## @param platformCortex.containerPorts.cortex Conduktor Console Cortex HTTP (or HTTPS if configured) container port
## @param platformCortex.containerPorts.alertmanager Conduktor Console AlertManager HTTP (or HTTPS if configured) container port
## @param platformCortex.containerPorts.prometheus Conduktor Console Prometheus HTTP (or HTTPS if configured) container port
##
containerPorts:
cortex: 9009
alertmanager: 9010
prometheus: 9090
## Configure extra options for Conduktor Console Cortex containers' liveness and readiness probes
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes
## @param platformCortex.livenessProbe.enabled Enable livenessProbe on Conduktor Console Cortex containers
## @param platformCortex.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe
## @param platformCortex.livenessProbe.periodSeconds Period seconds for livenessProbe
## @param platformCortex.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe
## @param platformCortex.livenessProbe.failureThreshold Failure threshold for livenessProbe
## @param platformCortex.livenessProbe.successThreshold Success threshold for livenessProbe
##
livenessProbe:
enabled: true
initialDelaySeconds: 30
periodSeconds: 10
timeoutSeconds: 5
failureThreshold: 3
successThreshold: 1
## @param platformCortex.readinessProbe.enabled Enable readinessProbe on Conduktor Console Cortex containers
## @param platformCortex.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe
## @param platformCortex.readinessProbe.periodSeconds Period seconds for readinessProbe
## @param platformCortex.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe
## @param platformCortex.readinessProbe.failureThreshold Failure threshold for readinessProbe
## @param platformCortex.readinessProbe.successThreshold Success threshold for readinessProbe
##
readinessProbe:
enabled: true
initialDelaySeconds: 30
periodSeconds: 10
timeoutSeconds: 5
failureThreshold: 3
successThreshold: 1
## @param platformCortex.startupProbe.enabled Enable startupProbe on Conduktor Console Cortex containers
## @param platformCortex.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe
## @param platformCortex.startupProbe.periodSeconds Period seconds for startupProbe
## @param platformCortex.startupProbe.timeoutSeconds Timeout seconds for startupProbe
## @param platformCortex.startupProbe.failureThreshold Failure threshold for startupProbe
## @param platformCortex.startupProbe.successThreshold Success threshold for startupProbe
##
startupProbe:
enabled: false
initialDelaySeconds: 10
periodSeconds: 10
timeoutSeconds: 5
failureThreshold: 10
successThreshold: 1
## @param platformCortex.customLivenessProbe Custom livenessProbe that overrides the default one
##
customLivenessProbe: {}
## @param platformCortex.customReadinessProbe Custom readinessProbe that overrides the default one
##
customReadinessProbe: {}
## @param platformCortex.customStartupProbe Custom startupProbe that overrides the default one
##
customStartupProbe: {}
## Conduktor Console Cortex resource requests and limits
## ref: http://kubernetes.io/docs/user-guide/compute-resources/
##
resources:
limits:
## @param platformCortex.resources.limits.cpu CPU limit for the platform cortex container
cpu: 2000m
## @param platformCortex.resources.limits.memory Memory limit for the container
memory: 2Gi
requests:
## @param platformCortex.resources.requests.cpu CPU resource requests
cpu: 500m
## @param platformCortex.resources.requests.memory Memory resource requests
memory: 500Mi
## @param platformCortex.podSecurityContext Conduktor Console Cortex Pod Security Context
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
## default:
## securityContext:
## readOnlyRootFilesystem: true
## runAsNonRoot: true
##
podSecurityContext: {}
## @param platformCortex.containerSecurityContext Conduktor Console Cortex containers' Security Context
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container
## default:
## securityContext:
## readOnlyRootFilesystem: true
## runAsNonRoot: true
##
containerSecurityContext: {}
## @param platformCortex.existingConfigmap The name of an existing ConfigMap with your custom configuration for Conduktor Console Cortex
##
existingConfigmap: ""
## @param platformCortex.command Override default container command (useful when using custom images)
##
command: []
## @param platformCortex.args Override default container args (useful when using custom images)
##
args: []
## @param platformCortex.hostAliases Conduktor Console Cortex pods host aliases
## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/
##
hostAliases: []
## @param platformCortex.podLabels Extra labels for Conduktor Console Cortex pods
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
##
podLabels: {}
## @param platformCortex.podAnnotations Annotations for Conduktor Console Cortex pods
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
##
podAnnotations: {}
## @param platformCortex.podAffinityPreset Pod affinity preset. Ignored if `platform.affinity` is set. Allowed values: `soft` or `hard`
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
##
podAffinityPreset: ""
## @param platformCortex.podAntiAffinityPreset Pod anti-affinity preset. Ignored if `platform.affinity` is set. Allowed values: `soft` or `hard`
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
##
podAntiAffinityPreset: soft
## Node platformCortex.affinity preset
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity
##
nodeAffinityPreset:
## @param platformCortex.nodeAffinityPreset.type Node affinity preset type. Ignored if `platform.affinity` is set. Allowed values: `soft` or `hard`
##
type: ""
## @param platformCortex.nodeAffinityPreset.key Node label key to match. Ignored if `platform.affinity` is set
##
key: ""
## @param platformCortex.nodeAffinityPreset.values Node label values to match. Ignored if `platform.affinity` is set
## E.g.
## values:
## - e2e-az1
## - e2e-az2
##
values: []
## @param platformCortex.affinity Affinity for Conduktor Console cortex pods assignment
## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
## NOTE: `platform.podAffinityPreset`, `platform.podAntiAffinityPreset`, and `platform.nodeAffinityPreset` will be ignored when it's set
##
affinity: {}
## @param platformCortex.nodeSelector Node labels for Conduktor Console Cortex pods assignment
## ref: https://kubernetes.io/docs/user-guide/node-selection/
##
nodeSelector: {}
## @param platformCortex.tolerations Tolerations for Conduktor Console Cortex pods assignment
## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
##
tolerations: []
## @param platformCortex.updateStrategy.type Conduktor Console Cortex statefulset strategy type
## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies
##
updateStrategy:
## StrategyType
## Can be set to RollingUpdate, OnDelete or Recreate
##
type: RollingUpdate
## @param platformCortex.priorityClassName Conduktor Console Cortex pods' priorityClassName
##
priorityClassName: ""
## @param platformCortex.topologySpreadConstraints Topology Spread Constraints for pod assignment spread across your cluster among failure-domains. Evaluated as a template
## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#spread-constraints-for-pods
##
topologySpreadConstraints: []
## @param platformCortex.schedulerName Name of the k8s scheduler (other than default) for Conduktor Console Cortex pods
## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/
##
schedulerName: ""
## @param platformCortex.terminationGracePeriodSeconds Seconds Redmine pod needs to terminate gracefully
## ref: https://kubernetes.io/docs/concepts/workloads/pods/pod/#termination-of-pods
##
terminationGracePeriodSeconds: ""
## @param platformCortex.lifecycleHooks for the Conduktor Console Cortex container(s) to automate configuration before or after startup
##
lifecycleHooks: {}
## @param platformCortex.extraEnvVars Array with extra environment variables to add to Conduktor Console Cortex nodes
## e.g:
## extraEnvVars:
## - name: FOO
## value: "bar"
##
extraEnvVars: []
## @param platformCortex.extraEnvVarsCM Name of existing ConfigMap containing extra env vars for Conduktor Console Cortex nodes
##
extraEnvVarsCM: ""
## @param platformCortex.extraEnvVarsSecret Name of existing Secret containing extra env vars for Conduktor Console Cortex nodes
##
extraEnvVarsSecret: ""
## @param platformCortex.dataVolume Configure the data volume to store Conduktor Console Cortex data