-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspringc.helm
1604 lines (1580 loc) · 66.6 KB
/
springc.helm
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
## 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
## @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 scdf.fullname template (will maintain the release name).
##
nameOverride: ""
## @param fullnameOverride String to fully override scdf.fullname template.
##
fullnameOverride: ""
## @param commonAnnotations Annotations to add to all deployed objects
##
commonAnnotations: {}
## @param commonLabels Labels to add to all deployed objects
##
commonLabels: {}
## @param kubeVersion Force target Kubernetes version (using Helm capabilities if not set)
##
kubeVersion: ""
## @param clusterDomain Default Kubernetes cluster domain
##
clusterDomain: cluster.local
## @param extraDeploy Array of extra objects to deploy with the release
##
extraDeploy: []
## @section Dataflow Server parameters
## Spring Cloud Dataflow Server parameters.
##
server:
## Bitnami Spring Cloud Dataflow Server image
## ref: https://hub.docker.com/r/bitnami/spring-cloud-dataflow/tags/
## @param server.image.registry Spring Cloud Dataflow image registry
## @param server.image.repository Spring Cloud Dataflow image repository
## @param server.image.tag Spring Cloud Dataflow image tag (immutable tags are recommended)
## @param server.image.pullPolicy Spring Cloud Dataflow image pull policy
## @param server.image.pullSecrets Specify docker-registry secret names as an array
## @param server.image.debug Enable image debug mode
##
image:
registry: docker.io
repository: bitnami/spring-cloud-dataflow
tag: 2.9.4-debian-10-r14
## Specify a imagePullPolicy. Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
## ref: https://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: []
## Set to true if you would like to see extra information on logs
##
debug: false
## @param server.hostAliases Deployment pod host aliases
## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/
##
hostAliases: []
composedTaskRunner:
## Bitnami Spring Cloud Dataflow Composed Task Runner image
## ref: https://hub.docker.com/r/bitnami/spring-cloud-dataflow/tags/
## @param server.composedTaskRunner.image.registry Spring Cloud Dataflow Composed Task Runner image registry
## @param server.composedTaskRunner.image.repository Spring Cloud Dataflow Composed Task Runner image repository
## @param server.composedTaskRunner.image.tag Spring Cloud Dataflow Composed Task Runner image tag (immutable tags are recommended)
##
image:
registry: docker.io
repository: bitnami/spring-cloud-dataflow-composed-task-runner
tag: 2.9.4-debian-10-r16
## Spring Cloud Dataflow Server configuration parameters
##
configuration:
## @param server.configuration.streamingEnabled Enables or disables streaming data processing
##
streamingEnabled: true
## @param server.configuration.batchEnabled Enables or disables batch data (tasks and schedules) processing
##
batchEnabled: true
## @param server.configuration.accountName The name of the account to configure for the Kubernetes platform
##
accountName: default
## @param server.configuration.trustK8sCerts Trust K8s certificates when querying the Kubernetes API
##
trustK8sCerts: false
## @param server.configuration.containerRegistries Container registries configuration
## Example:
## containerRegistries:
## default:
## registry-host: registry-1.docker.io
## authorization-type: dockeroauth2
##
containerRegistries: {}
## @param server.configuration.grafanaInfo Endpoint to the grafana instance (Deprecated: use the metricsDashboard instead)
##
grafanaInfo: ""
## @param server.configuration.metricsDashboard Endpoint to the metricsDashboard instance
##
metricsDashboard: ""
## @param server.configuration.defaultSpringApplicationJSON Injects default values for environment variable SPRING_APPLICATION_JSON
## {
## "maven": {
## "local-repository": null,
## "remote-repositories": {
## "repo1": {
## "url": "https://repo.spring.io/libs-snapshot"
## }
## }
## }
## }
##
defaultSpringApplicationJSON: true
## @param server.existingConfigmap ConfigMap with Spring Cloud Dataflow Server Configuration
## NOTE: When it's set the server.configuration.* and deployer.*
## parameters are ignored,
##
existingConfigmap: ""
## @param server.command Override default container command (useful when using custom images)
##
command: []
## @param server.args Override default container args (useful when using custom images)
##
args: []
## @param server.lifecycleHooks for the Dataflow server container(s) to automate configuration before or after startup
##
lifecycleHooks: {}
## @param server.extraEnvVars Extra environment variables to be set on Dataflow server container
## E.g:
## extraEnvVars:
## - name: FOO
## value: BAR
##
extraEnvVars: []
## @param server.extraEnvVarsCM ConfigMap with extra environment variables
##
extraEnvVarsCM: ""
## @param server.extraEnvVarsSecret Secret with extra environment variables
##
extraEnvVarsSecret: ""
## @param server.replicaCount Number of Dataflow server replicas to deploy
##
replicaCount: 1
## @param server.podAffinityPreset Dataflow server pod affinity preset. Ignored if `server.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 server.podAntiAffinityPreset Dataflow server pod anti-affinity preset. Ignored if `server.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
## @param server.containerPort Dataflow server port
##
containerPort: 8080
## Dataflow Server node affinity preset
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity
##
nodeAffinityPreset:
## @param server.nodeAffinityPreset.type Dataflow server node affinity preset type. Ignored if `server.affinity` is set. Allowed values: `soft` or `hard`
##
type: ""
## @param server.nodeAffinityPreset.key Dataflow server node label key to match Ignored if `server.affinity` is set.
## E.g.
## key: "kubernetes.io/e2e-az-name"
##
key: ""
## @param server.nodeAffinityPreset.values Dataflow server node label values to match. Ignored if `server.affinity` is set.
## E.g.
## values:
## - e2e-az1
## - e2e-az2
##
values: []
## @param server.affinity Dataflow server affinity for pod assignment
## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
## Note: server.podAffinityPreset, server.podAntiAffinityPreset, and server.nodeAffinityPreset will be ignored when it's set
##
affinity: {}
## @param server.nodeSelector Dataflow server node labels for pod assignment
## ref: https://kubernetes.io/docs/user-guide/node-selection/
##
nodeSelector: {}
## @param server.tolerations Dataflow server tolerations for pod assignment
## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
##
tolerations: []
## @param server.podAnnotations Annotations for Dataflow server pods
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
##
podAnnotations: {}
## @param server.updateStrategy.type Deployment strategy type for Dataflow server pods.
## ref: https://kubernetes.io/docs/concepts/workloads/controllers/deployment/#strategy
## e.g:
## updateStrategy:
## type: RollingUpdate
## rollingUpdate:
## maxSurge: 25%
## maxUnavailable: 25%
##
updateStrategy:
type: RollingUpdate
## @param server.podLabels Extra labels for Dataflow Server pods
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
##
podLabels: {}
## @param server.priorityClassName Dataflow Server pods' priority
## ref: https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/
##
priorityClassName: ""
## @param server.schedulerName Name of the k8s scheduler (other than default)
## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/
##
schedulerName: ""
## @param server.topologySpreadConstraints Topology Spread Constraints for pod assignment
## https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/
## The value is evaluated as a template
##
topologySpreadConstraints: []
## Dataflow Server pods' Security Context.
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
## @param server.podSecurityContext.enabled Enabled Dataflow Server pods' Security Context
## @param server.podSecurityContext.fsGroup Group ID for the volumes of the pod
##
podSecurityContext:
enabled: true
fsGroup: 1001
## Dataflow Server containers' Security Context (only main container).
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container
## @param server.containerSecurityContext.enabled Enabled Dataflow Server containers' Security Context
## @param server.containerSecurityContext.runAsUser Set Dataflow Server container's Security Context runAsUser
##
containerSecurityContext:
enabled: true
runAsUser: 1001
## Dataflow Server containers' resource requests and limits.
## ref: https://kubernetes.io/docs/user-guide/compute-resources/
## We usually recommend not to specify default resources and to leave this as a conscious
## choice for the user. This also increases chances charts run on environments with little
## resources, such as Minikube. If you do want to specify resources, uncomment the following
## lines, adjust them as necessary, and remove the curly braces after 'resources:'.
## @param server.resources.limits The resources limits for the Dataflow server container
## @param server.resources.requests The requested resources for the Dataflow server container
##
resources:
## Example:
## limits:
## cpu: 100m
## memory: 128Mi
limits: {}
## Examples:
## requests:
## cpu: 100m
## memory: 128Mi
requests: {}
## Dataflow Server pods' startup probes. Evaluated as a template.
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes
## @param server.startupProbe.enabled Enable startupProbe
## @param server.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe
## @param server.startupProbe.periodSeconds Period seconds for startupProbe
## @param server.startupProbe.timeoutSeconds Timeout seconds for startupProbe
## @param server.startupProbe.failureThreshold Failure threshold for startupProbe
## @param server.startupProbe.successThreshold Success threshold for startupProbe
##
startupProbe:
enabled: false
initialDelaySeconds: 120
timeoutSeconds: 1
periodSeconds: 20
failureThreshold: 6
successThreshold: 1
## Dataflow Server pods' liveness probes. Evaluated as a template.
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes
## @param server.livenessProbe.enabled Enable livenessProbe
## @param server.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe
## @param server.livenessProbe.periodSeconds Period seconds for livenessProbe
## @param server.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe
## @param server.livenessProbe.failureThreshold Failure threshold for livenessProbe
## @param server.livenessProbe.successThreshold Success threshold for livenessProbe
##
livenessProbe:
enabled: true
initialDelaySeconds: 120
timeoutSeconds: 1
periodSeconds: 20
failureThreshold: 6
successThreshold: 1
## Dataflow Server pods' readiness probes. Evaluated as a template.
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes
## @param server.readinessProbe.enabled Enable readinessProbe
## @param server.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe
## @param server.readinessProbe.periodSeconds Period seconds for readinessProbe
## @param server.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe
## @param server.readinessProbe.failureThreshold Failure threshold for readinessProbe
## @param server.readinessProbe.successThreshold Success threshold for readinessProbe
##
readinessProbe:
enabled: true
initialDelaySeconds: 120
timeoutSeconds: 1
periodSeconds: 20
failureThreshold: 6
successThreshold: 1
## @param server.customStartupProbe Override default startup probe
##
customStartupProbe: {}
## @param server.customLivenessProbe Override default liveness probe
##
customLivenessProbe: {}
## @param server.customReadinessProbe Override default readiness probe
##
customReadinessProbe: {}
## Dataflow Server Service parameters.
##
service:
## @param server.service.type Kubernetes service type
##
type: LoadBalancer
## @param server.service.port Service HTTP port
##
port: 8080
## @param server.service.nodePort Specify the nodePort value for the LoadBalancer and NodePort service types
## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport
##
nodePort: ""
## @param server.service.clusterIP Dataflow server service cluster IP
## e.g:
## clusterIP: None
##
clusterIP: ""
## @param server.service.externalTrafficPolicy Enable client source IP preservation
## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip
##
externalTrafficPolicy: Cluster
## @param server.service.loadBalancerIP Load balancer IP if service type is `LoadBalancer`
## Set the LoadBalancer service type to internal only
## ref: https://kubernetes.io/docs/concepts/services-networking/service/#internal-load-balancer
##
loadBalancerIP: ""
## @param server.service.loadBalancerSourceRanges Addresses that are allowed when service is LoadBalancer
## 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 server.service.extraPorts Extra ports to expose (normally used with the `sidecar` value)
##
extraPorts: []
## @param server.service.annotations Provide any additional annotations which may be required. Evaluated as a template.
##
annotations: {}
## @param server.service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP"
## If "ClientIP", consecutive client requests will be directed to the same Pod
## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies
##
sessionAffinity: None
## @param server.service.sessionAffinityConfig Additional settings for the sessionAffinity
## sessionAffinityConfig:
## clientIP:
## timeoutSeconds: 300
sessionAffinityConfig: {}
## Configure the ingress resource that allows you to access Dataflow Server
##
ingress:
## @param server.ingress.enabled Enable ingress controller resource
##
enabled: false
## @param server.ingress.path The Path to WordPress. You may need to set this to '/*' in order to use this with ALB ingress controllers.
##
path: /
## @param server.ingress.apiVersion Force Ingress API version (automatically detected if not set)
##
apiVersion: ""
## @param server.ingress.pathType Ingress path type
##
pathType: ImplementationSpecific
## DEPRECATED: Use server.ingress.annotations instead of server.ingress.certManager
## certManager: false
##
## @param server.ingress.hostname Default host for the ingress resource
##
hostname: dataflow.local
## @param server.ingress.annotations Additional annotations for the Ingress resource. To enable certificate autogeneration, place here your cert-manager annotations.
## For a full list of possible ingress annotations, please see
## ref: https://github.com/kubernetes/ingress-nginx/blob/master/docs/user-guide/nginx-configuration/annotations.md
## 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 server.ingress.tls Enable TLS configuration for the hostname 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 or relay on cert-manager to create it
##
tls: false
## @param server.ingress.certManager Add the corresponding annotations for cert-manager integration
##
certManager: false
## @param server.ingress.extraHosts The list of additional hostnames to be covered with this ingress record.
## Most likely the hostname above will be enough, but in the event more hosts are needed, this is an array
## extraHosts:
## - name: dataflow.local
## path: /
##
extraHosts: []
## @param server.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 server.ingress.extraTls The tls configuration for additional hostnames to be covered with this ingress record.
## see: https://kubernetes.io/docs/concepts/services-networking/ingress/#tls
## extraTls:
## - hosts:
## - dataflow.local
## secretName: dataflow.local-tls
##
extraTls: []
## @param server.ingress.secrets If you're providing your own certificates, please use this to add the certificates as secrets
## key and certificate should start with -----BEGIN CERTIFICATE----- or
## -----BEGIN RSA PRIVATE KEY-----
##
## name should line up with a tlsSecret set further up
## If you're using cert-manager, this is unneeded, as it will create the secret for you if it is not set
##
## It is also possible to create and manage the certificates outside of this helm chart
## Please see README.md for more information
## e.g:
## - name: dataflow.local-tls
## key:
## certificate:
##
secrets: []
## @param server.ingress.ingressClassName IngressClass that will be 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 server.initContainers Add init containers to the Dataflow Server pods
## Example:
## initContainers:
## - name: your-image-name
## image: your-image
## imagePullPolicy: Always
## ports:
## - name: portname
## containerPort: 1234
##
initContainers: []
## @param server.sidecars Add sidecars to the Dataflow Server pods
## Example:
## sidecars:
## - name: your-image-name
## image: your-image
## imagePullPolicy: Always
## ports:
## - name: portname
## containerPort: 1234
##
sidecars: []
## Dataflow Server Pod Disruption Budget configuration
## ref: https://kubernetes.io/docs/tasks/run-application/configure-pdb/
##
pdb:
## @param server.pdb.create Enable/disable a Pod Disruption Budget creation
##
create: false
## @param server.pdb.minAvailable Minimum number/percentage of pods that should remain scheduled
##
minAvailable: 1
## @param server.pdb.maxUnavailable Maximum number/percentage of pods that may be made unavailable
##
maxUnavailable: ""
## Dataflow Server Autoscaling parameters.
##
autoscaling:
## @param server.autoscaling.enabled Enable autoscaling for Dataflow server
## @param server.autoscaling.minReplicas Minimum number of Dataflow server replicas
## @param server.autoscaling.maxReplicas Maximum number of Dataflow server replicas
## @param server.autoscaling.targetCPU Target CPU utilization percentage
## @param server.autoscaling.targetMemory Target Memory utilization percentage
##
enabled: false
minReplicas: ""
maxReplicas: ""
targetCPU: ""
targetMemory: ""
## @param server.extraVolumes Extra Volumes to be set on the Dataflow Server Pod
## e.g:
## extraVolumes:
## - name: sample
## emptyDir: {}
##
extraVolumes: []
## @param server.extraVolumeMounts Extra VolumeMounts to be set on the Dataflow Container
## e.g:
## extraVolumeMounts:
## - name: sample
## mountPath: /temp/sample
##
extraVolumeMounts: []
## Java Debug Wire Protocol (JDWP) parameters.
##
jdwp:
## @param server.jdwp.enabled Set to true to enable Java debugger
##
enabled: false
## @param server.jdwp.port Specify port for remote debugging
##
port: 5005
## @param server.proxy Add proxy configuration for SCDF server
## Example:
## proxy:
## host: "myproxy.com"
## port: 8080
## user: ""
## password: ""
##
proxy: {}
## @param server.applicationProperties Specify common application properties added by SCDF server to streams and/or tasks
## ref: https://docs.spring.io/spring-cloud-dataflow/docs/current/reference/htmlsingle/#spring-cloud-dataflow-global-properties
applicationProperties: {}
## @section Dataflow Skipper parameters
## Spring Cloud Skipper parameters.
##
skipper:
## @param skipper.enabled Enable Spring Cloud Skipper component
## Note: it'll be also enabled if streams are enabled in Dataflow server configuration.
##
enabled: true
## @param skipper.hostAliases Deployment pod host aliases
## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/
##
hostAliases: []
## Bitnami Spring Cloud Skipper image
## ref: https://hub.docker.com/r/bitnami/spring-cloud-skipper/tags/
## @param skipper.image.registry Spring Cloud Skipper image registry
## @param skipper.image.repository Spring Cloud Skipper image repository
## @param skipper.image.tag Spring Cloud Skipper image tag (immutable tags are recommended)
## @param skipper.image.pullPolicy Spring Cloud Skipper image pull policy
## @param skipper.image.pullSecrets Specify docker-registry secret names as an array
## @param skipper.image.debug Enable image debug mode
##
image:
registry: docker.io
repository: bitnami/spring-cloud-skipper
tag: 2.8.4-debian-10-r16
## Specify a imagePullPolicy. Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
## ref: https://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: []
## Set to true if you would like to see extra information on logs
##
debug: false
## Skipper Server configuration parameters
##
configuration:
## @param skipper.configuration.accountName The name of the account to configure for the Kubernetes platform
##
accountName: default
## @param skipper.configuration.trustK8sCerts Trust K8s certificates when querying the Kubernetes API
##
trustK8sCerts: false
## @param skipper.existingConfigmap Name of existing ConfigMap with Skipper server configuration
## NOTE: When it's set the server.configuration.* and deployer.*
## parameters are ignored,
##
existingConfigmap: ""
## @param skipper.command Override default container command (useful when using custom images)
##
command: []
## @param skipper.args Override default container args (useful when using custom images)
##
args: []
## @param skipper.lifecycleHooks for the Skipper container(s) to automate configuration before or after startup
##
lifecycleHooks: {}
## @param skipper.extraEnvVars Extra environment variables to be set on Skipper server container
## E.g:
## extraEnvVars:
## - name: FOO
## value: BAR
##
extraEnvVars: []
## @param skipper.extraEnvVarsCM Name of existing ConfigMap containing extra environment variables
##
extraEnvVarsCM: ""
## @param skipper.extraEnvVarsSecret Name of existing Secret containing extra environment variables
##
extraEnvVarsSecret: ""
## @param skipper.replicaCount Number of Skipper server replicas to deploy
##
replicaCount: 1
## @param skipper.podAffinityPreset Skipper pod affinity preset. Ignored if `skipper.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 skipper.podAntiAffinityPreset Skipper pod anti-affinity preset. Ignored if `skipper.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
## Skipper node affinity preset
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity
##
nodeAffinityPreset:
## @param skipper.nodeAffinityPreset.type Skipper node affinity preset type. Ignored if `skipper.affinity` is set. Allowed values: `soft` or `hard`
##
type: ""
## @param skipper.nodeAffinityPreset.key Skipper node label key to match Ignored if `skipper.affinity` is set.
## E.g.
## key: "kubernetes.io/e2e-az-name"
##
key: ""
## @param skipper.nodeAffinityPreset.values Skipper node label values to match. Ignored if `skipper.affinity` is set.
## E.g.
## values:
## - e2e-az1
## - e2e-az2
##
values: []
## @param skipper.affinity Skipper affinity for pod assignment
## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
## Note: skipper.podAffinityPreset, skipper.podAntiAffinityPreset, and skipper.nodeAffinityPreset will be ignored when it's set
##
affinity: {}
## @param skipper.nodeSelector Skipper node labels for pod assignment
## ref: https://kubernetes.io/docs/user-guide/node-selection/
##
nodeSelector: {}
## @param skipper.tolerations Skipper tolerations for pod assignment
## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
##
tolerations: []
## @param skipper.podAnnotations Annotations for Skipper server pods
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
##
podAnnotations: {}
## @param skipper.updateStrategy.type Deployment strategy type for Skipper server pods.
## ref: https://kubernetes.io/docs/concepts/workloads/controllers/deployment/#strategy
## e.g:
## updateStrategy:
## type: RollingUpdate
## rollingUpdate:
## maxSurge: 25%
## maxUnavailable: 25%
##
updateStrategy:
type: RollingUpdate
## @param skipper.podLabels Extra labels for Skipper pods
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
##
podLabels: {}
## @param skipper.priorityClassName Controller priorityClassName
## ref: https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/
##
priorityClassName: ""
## @param skipper.schedulerName Name of the k8s scheduler (other than default)
## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/
##
schedulerName: ""
## @param skipper.topologySpreadConstraints Topology Spread Constraints for pod assignment
## https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/
## The value is evaluated as a template
##
topologySpreadConstraints: []
## Skipper pods' Security Context.
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
## @param skipper.podSecurityContext.enabled Enabled Skipper pods' Security Context
## @param skipper.podSecurityContext.fsGroup Group ID for the volumes of the pod
##
podSecurityContext:
enabled: true
fsGroup: 1001
## Skipper containers' Security Context (only main container).
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container
## @param skipper.containerSecurityContext.enabled Enabled Datafkiw Skipper containers' Security Context
## @param skipper.containerSecurityContext.runAsUser Set Dataflow Skipper container's Security Context runAsUser
##
containerSecurityContext:
enabled: true
runAsUser: 1001
## Skipper containers' resource requests and limits.
## ref: https://kubernetes.io/docs/user-guide/compute-resources/
## We usually recommend not to specify default resources and to leave this as a conscious
## choice for the user. This also increases chances charts run on environments with little
## resources, such as Minikube. If you do want to specify resources, uncomment the following
## lines, adjust them as necessary, and remove the curly braces after 'resources:'.
## @param skipper.resources.limits The resources limits for the Skipper server container
## @param skipper.resources.requests The requested resources for the Skipper server container
##
resources:
## Example:
## limits:
## cpu: 100m
## memory: 128Mi
limits: {}
## Examples:
## requests:
## cpu: 100m
## memory: 128Mi
requests: {}
## Configure extra options for startup probe
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes
## @param skipper.startupProbe.enabled Enable startupProbe
## @param skipper.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe
## @param skipper.startupProbe.periodSeconds Period seconds for startupProbe
## @param skipper.startupProbe.timeoutSeconds Timeout seconds for startupProbe
## @param skipper.startupProbe.failureThreshold Failure threshold for startupProbe
## @param skipper.startupProbe.successThreshold Success threshold for startupProbe
##
startupProbe:
enabled: false
initialDelaySeconds: 120
timeoutSeconds: 1
periodSeconds: 20
failureThreshold: 6
successThreshold: 1
## Configure extra options for liveness probe
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes
## @param skipper.livenessProbe.enabled Enable livenessProbe
## @param skipper.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe
## @param skipper.livenessProbe.periodSeconds Period seconds for livenessProbe
## @param skipper.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe
## @param skipper.livenessProbe.failureThreshold Failure threshold for livenessProbe
## @param skipper.livenessProbe.successThreshold Success threshold for livenessProbe
##
livenessProbe:
enabled: true
initialDelaySeconds: 120
timeoutSeconds: 1
periodSeconds: 20
failureThreshold: 6
successThreshold: 1
## Configure extra options for readiness probe
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes
## @param skipper.readinessProbe.enabled Enable readinessProbe
## @param skipper.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe
## @param skipper.readinessProbe.periodSeconds Period seconds for readinessProbe
## @param skipper.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe
## @param skipper.readinessProbe.failureThreshold Failure threshold for readinessProbe
## @param skipper.readinessProbe.successThreshold Success threshold for readinessProbe
##
readinessProbe:
enabled: true
initialDelaySeconds: 120
timeoutSeconds: 1
periodSeconds: 20
failureThreshold: 6
successThreshold: 1
## @param skipper.customStartupProbe Override default startup probe
##
customStartupProbe: {}
## @param skipper.customLivenessProbe Override default liveness probe
##
customLivenessProbe: {}
## @param skipper.customReadinessProbe Override default readiness probe
##
customReadinessProbe: {}
## Skipper Service parameters.
##
service:
## @param skipper.service.type Kubernetes service type
##
type: LoadBalancer
## @param skipper.service.port Service HTTP port
##
port: 80
## @param skipper.service.nodePort Service HTTP node port
## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport
##
nodePort: ""
## @param skipper.service.clusterIP Skipper server service cluster IP
## e.g:
## clusterIP: None
##
clusterIP: ""
## @param skipper.service.externalTrafficPolicy Enable client source IP preservation
## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip
##
externalTrafficPolicy: Cluster
## @param skipper.service.loadBalancerIP Load balancer IP if service type is `LoadBalancer`
## ref: https://kubernetes.io/docs/concepts/services-networking/service/#internal-load-balancer
##
loadBalancerIP: ""
## @param skipper.service.loadBalancerSourceRanges Address that are allowed when service is LoadBalancer
## Set the LoadBalancer service type to internal only
## 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 skipper.service.extraPorts Extra ports to expose (normally used with the `sidecar` value)
##
extraPorts: []
## @param skipper.service.annotations Annotations for Skipper server service
##
annotations: {}
## @param skipper.service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP"
## If "ClientIP", consecutive client requests will be directed to the same Pod
## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies
##
sessionAffinity: None
## @param skipper.service.sessionAffinityConfig Additional settings for the sessionAffinity
## sessionAffinityConfig:
## clientIP:
## timeoutSeconds: 300
sessionAffinityConfig: {}
## @param skipper.initContainers Add init containers to the Dataflow Skipper pods
## Example:
## initContainers:
## - name: your-image-name
## image: your-image
## imagePullPolicy: Always
## ports:
## - name: portname
## containerPort: 1234
##
initContainers: []
## @param skipper.sidecars Add sidecars to the Skipper pods
## Example:
## sidecars:
## - name: your-image-name
## image: your-image
## imagePullPolicy: Always
## ports:
## - name: portname
## containerPort: 1234
##
sidecars: []
## Skipper Pod Disruption Budget configuration
## ref: https://kubernetes.io/docs/tasks/run-application/configure-pdb/
##
pdb:
## @param skipper.pdb.create Enable/disable a Pod Disruption Budget creation
##
create: false
## @param skipper.pdb.minAvailable Minimum number/percentage of pods that should remain scheduled
##
minAvailable: 1
## @param skipper.pdb.maxUnavailable Maximum number/percentage of pods that may be made unavailable
##
maxUnavailable: ""
## Skipper Autoscaling parameters.
##
autoscaling:
## @param skipper.autoscaling.enabled Enable autoscaling for Skipper server
## @param skipper.autoscaling.minReplicas Minimum number of Skipper server replicas
## @param skipper.autoscaling.maxReplicas Maximum number of Skipper server replicas
## @param skipper.autoscaling.targetCPU Target CPU utilization percentage
## @param skipper.autoscaling.targetMemory Target Memory utilization percentage
##
enabled: false
minReplicas: ""
maxReplicas: ""
targetCPU: ""
targetMemory: ""
## @param skipper.extraVolumes Extra Volumes to be set on the Skipper Pod
## e.g:
## extraVolumes:
## - name: sample
## emptyDir: {}
##
extraVolumes: []
## @param skipper.extraVolumeMounts Extra VolumeMounts to be set on the Skipper Container
## e.g:
## extraVolumeMounts:
## - name: sample
## mountPath: /temp/sample
##
extraVolumeMounts: []
## Java Debug Wire Protocol (JDWP) parameters.
##
jdwp:
## @param skipper.jdwp.enabled Enable Java Debug Wire Protocol (JDWP)
##
enabled: false
## @param skipper.jdwp.port JDWP TCP port for remote debugging
##
port: 5005
## External Skipper Configuration
## All of these values are ignored when skipper.enabled is set to true
##
externalSkipper:
## @param externalSkipper.host Host of a external Skipper Server
##
host: localhost
## @param externalSkipper.port External Skipper Server port number
##
port: 7577
## @section Deployer parameters
## Spring Cloud Deployer for Kubernetes parameters.
##
deployer:
## Streaming applications resource requests and limits.
## ref: https://kubernetes.io/docs/user-guide/compute-resources/
## @param deployer.resources.limits [object] Streaming applications resource limits
## @param deployer.resources.requests Streaming applications resource requests
##
resources:
limits:
cpu: 500m
memory: 1024Mi
## Examples:
## requests:
## cpu: 100m
## memory: 128Mi
requests: {}
## Configure extra options for readiness probe
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes
## @param deployer.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe
##
readinessProbe:
initialDelaySeconds: 120
## Configure extra options for liveness probe
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes
## @param deployer.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe
##
livenessProbe:
initialDelaySeconds: 90
## @param deployer.nodeSelector The node selectors to apply to the streaming applications deployments in "key:value" format
## Multiple node selectors are comma separated.
##
nodeSelector: ""
## @param deployer.tolerations Streaming applications tolerations
##
tolerations: {}
## @param deployer.volumeMounts Streaming applications extra volume mounts
##
volumeMounts: {}
## @param deployer.volumes Streaming applications extra volumes
##
volumes: {}
## @param deployer.environmentVariables Streaming applications environment variables
## RabbitMQ/Kafka envs.
## Example:
## environmentVariables:
## - JAVA_TOOL_OPTIONS=-Xmx1024m
## - SPRING_REDIS_HOST=redis
## - SPRING_REDIS_PORT=6379
##
environmentVariables: []
## Streams containers' Security Context. This security context will be use in every deployed stream.
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container
## @param deployer.podSecurityContext.enabled Enabled pods' Security Context of the deployed pods batch or stream pods
## @param deployer.podSecurityContext.runAsUser Set Dataflow Streams container's Security Context runAsUser
podSecurityContext:
enabled: true
runAsUser: 1001
## @param deployer.imagePullSecrets Streaming applications imagePullSecrets
##
imagePullSecrets: []
## @param deployer.secretRefs Streaming applications secretRefs
##
secretRefs: []
## @param deployer.entryPointStyle An entry point style affects how application properties are passed to the container to be deployed. Allowed values: exec (default), shell, boot
## ref: https://docs.spring.io/spring-cloud-dataflow/docs/current/reference/htmlsingle/#_entry_point_style
entryPointStyle: exec
## @param deployer.imagePullPolicy An image pull policy defines when a Docker image should be pulled to the local registry. Allowed values: IfNotPresent (default), Always, Never
## ref: https://docs.spring.io/spring-cloud-dataflow/docs/current/reference/htmlsingle/#_image_pull_policy