File tree 5 files changed +33
-3
lines changed
5 files changed +33
-3
lines changed Original file line number Diff line number Diff line change 1
1
apiVersion : v1
2
2
name : sparkoperator
3
3
description : A Helm chart for Spark on Kubernetes operator
4
- version : 0.6.11
4
+ version : 0.6.12
5
5
appVersion : v1beta2-1.1.1-2.4.5
6
6
keywords :
7
7
- spark
Original file line number Diff line number Diff line change @@ -57,7 +57,9 @@ The following table lists the configurable parameters of the Spark operator char
57
57
| ` metricsPort ` | Port for the metrics endpoint | 10254 |
58
58
| ` metricsEndpoint ` | Metrics endpoint | "/metrics" |
59
59
| ` metricsPrefix ` | Prefix for the metrics | "" |
60
- | ` podAnnotations ` | annotations to be added to pods | ` {} ` |
60
+ | ` nodeSelector ` | Node labels for pod assignment | ` {} ` |
61
+ | ` tolerations ` | Tolerations for the sparkoperator deployment | ` [] ` |
62
+ | ` podAnnotations ` | Annotations to be added to pods | ` {} ` |
61
63
| ` resyncInterval ` | Informer resync interval in seconds | 30 |
62
64
| ` webhookPort ` | Service port of the webhook server | 8080 |
63
65
| ` resources ` | Resources needed for the sparkoperator deployment | {} |
Original file line number Diff line number Diff line change 1
1
operatorImageName : gcr.io/spark-operator/spark-operator
2
- operatorVersion : v1beta2-1.1.0 -2.4.5
2
+ operatorVersion : v1beta2-1.1.1 -2.4.5
3
3
imagePullPolicy : IfNotPresent
4
4
imagePullSecrets : []
5
5
@@ -36,6 +36,18 @@ metricsPrefix: ""
36
36
# #
37
37
nodeSelector : {}
38
38
39
+ # # Tolerations for the sparkoperator deployment
40
+ # #
41
+ # # Example:
42
+ # # - key: "toleration=key"
43
+ # # operator: "Equal"
44
+ # # value: "value"
45
+ # # effect: "NoSchedule"
46
+ # #
47
+ # # Ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
48
+ # #
49
+ tolerations : []
50
+
39
51
podAnnotations : {}
40
52
41
53
# # Resources for the sparkoperator deployment
Original file line number Diff line number Diff line change @@ -107,3 +107,7 @@ spec:
107
107
nodeSelector :
108
108
{{ toYaml .Values.nodeSelector | indent 8 }}
109
109
{{- end }}
110
+ {{- if .Values.tolerations }}
111
+ tolerations :
112
+ {{ toYaml .Values.tolerations | indent 8 }}
113
+ {{- end }}
Original file line number Diff line number Diff line change @@ -36,6 +36,18 @@ metricsPrefix: ""
36
36
# #
37
37
nodeSelector : {}
38
38
39
+ # # Tolerations for the sparkoperator deployment
40
+ # #
41
+ # # Example:
42
+ # # - key: "toleration=key"
43
+ # # operator: "Equal"
44
+ # # value: "value"
45
+ # # effect: "NoSchedule"
46
+ # #
47
+ # # Ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
48
+ # #
49
+ tolerations : []
50
+
39
51
podAnnotations : {}
40
52
41
53
# # Resources for the sparkoperator deployment
You can’t perform that action at this time.
0 commit comments