diff options
author | Mike Elliott <mike.elliott@amdocs.com> | 2019-04-30 19:17:52 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-04-30 19:17:52 +0000 |
commit | 354afbbf205d4c7e34337d7af184560882966d91 (patch) | |
tree | c3c7d813d64a6451b5630ab02183abe0727cde02 /kubernetes/sdc/charts/sdc-cs/templates/job.yaml | |
parent | d9054f9a949d5a5842818ec51731f9889028e06f (diff) | |
parent | 35f83f5ba9cf0e7053160710fa18d73156bdba66 (diff) |
Merge "Upgrade SDC to use common Cassandra Cluster"
Diffstat (limited to 'kubernetes/sdc/charts/sdc-cs/templates/job.yaml')
-rw-r--r-- | kubernetes/sdc/charts/sdc-cs/templates/job.yaml | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/kubernetes/sdc/charts/sdc-cs/templates/job.yaml b/kubernetes/sdc/charts/sdc-cs/templates/job.yaml index 75e9a11a03..856aecc63b 100644 --- a/kubernetes/sdc/charts/sdc-cs/templates/job.yaml +++ b/kubernetes/sdc/charts/sdc-cs/templates/job.yaml @@ -40,7 +40,11 @@ spec: - /root/ready.py args: - --container-name + {{- if .Values.global.cassandra.localCluster }} - sdc-cs + {{- else }} + - cassandra + {{- end }} env: - name: NAMESPACE valueFrom: @@ -54,8 +58,6 @@ spec: volumeMounts: - name: {{ include "common.fullname" . }}-environments mountPath: /root/chef-solo/environments/ - - name: {{ include "common.fullname" . }}-data - mountPath: /var/lib/cassandra/ - name: {{ include "common.fullname" . }}-chef-cache mountPath: /root/chef-solo/cache env: @@ -81,13 +83,6 @@ spec: configMap: name: {{ .Release.Name }}-sdc-environments-configmap defaultMode: 0755 - - name: {{ include "common.fullname" . }}-data - {{- if .Values.persistence.enabled }} - persistentVolumeClaim: - claimName: {{ include "common.fullname" . }} - {{- else }} - emptyDir: {} - {{- end }} - name: {{ include "common.fullname" . }}-chef-cache emptyDir: {} imagePullSecrets: |