File tree Expand file tree Collapse file tree 5 files changed +7
-7
lines changed
charts/spark-operator-chart Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1
1
apiVersion : v2
2
2
name : spark-operator
3
3
description : A Helm chart for Spark on Kubernetes operator
4
- version : 1.2.12
4
+ version : 1.2.13
5
5
appVersion : v1beta2-1.4.4-3.5.0
6
6
keywords :
7
7
- spark
Original file line number Diff line number Diff line change 1
1
# spark-operator
2
2
3
- ![ Version: 1.2.12 ] ( https://img.shields.io/badge/Version-1.2.12 -informational?style=flat-square ) ![ AppVersion: v1beta2-1.4.4-3.5.0] ( https://img.shields.io/badge/AppVersion-v1beta2--1.4.4--3.5.0-informational?style=flat-square )
3
+ ![ Version: 1.2.13 ] ( https://img.shields.io/badge/Version-1.2.13 -informational?style=flat-square ) ![ AppVersion: v1beta2-1.4.4-3.5.0] ( https://img.shields.io/badge/AppVersion-v1beta2--1.4.4--3.5.0-informational?style=flat-square )
4
4
5
5
A Helm chart for Spark on Kubernetes operator
6
6
@@ -126,7 +126,7 @@ See [helm uninstall](https://helm.sh/docs/helm/helm_uninstall) for command docum
126
126
| serviceAccounts.sparkoperator.create | bool | ` true ` | Create a service account for the operator |
127
127
| serviceAccounts.sparkoperator.name | string | ` "" ` | Optional name for the operator service account |
128
128
| sidecars | list | ` [] ` | Sidecar containers |
129
- | sparkJobNamespaces | list | ` [] ` | List of namespaces where to run spark jobs, operator namespace is included only when list of namespaces is empty |
129
+ | sparkJobNamespaces | list | ` [] ` | List of namespaces where to run spark jobs |
130
130
| tolerations | list | ` [] ` | List of node taints to tolerate |
131
131
| uiService.enable | bool | ` true ` | Enable UI service creation for Spark application |
132
132
| volumeMounts | list | ` [] ` | |
Original file line number Diff line number Diff line change 3
3
4
4
# In the post-install hook, the token corresponding to the operator service account
5
5
# is used to authenticate with the Kubernetes API server to install the secret bundle.
6
- {{- $jobNamespaces := .Values.sparkJobNamespaces | default ( list .Release.Namespace) }}
6
+ {{- $jobNamespaces := .Values.sparkJobNamespaces | default list }}
7
7
---
8
8
apiVersion : apps/v1
9
9
kind : Deployment
66
66
args :
67
67
- -v={{ .Values.logLevel }}
68
68
- -logtostderr
69
- {{- if le (len $jobNamespaces) 1 }}
69
+ {{- if eq (len $jobNamespaces) 1 }}
70
70
- -namespace={{ index $jobNamespaces 0 }}
71
71
{{- end }}
72
72
- -enable-ui-service={{ .Values.uiService.enable}}
Original file line number Diff line number Diff line change 1
1
{{- if or .Values.rbac.create .Values.rbac.createRole }}
2
- {{- $jobNamespaces := .Values.sparkJobNamespaces | default ( list .Release.Namespace) }}
2
+ {{- $jobNamespaces := .Values.sparkJobNamespaces | default list }}
3
3
{{- range $jobNamespace := $jobNamespaces }}
4
4
---
5
5
apiVersion : rbac.authorization.k8s.io/v1
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ serviceAccounts:
52
52
# -- Optional annotations for the operator service account
53
53
annotations : {}
54
54
55
- # -- List of namespaces where to run spark jobs, operator namespace is included only when list of namespaces is empty
55
+ # -- List of namespaces where to run spark jobs
56
56
sparkJobNamespaces : []
57
57
# - ns1
58
58
You can’t perform that action at this time.
0 commit comments