Merge "Remove the duplicate volume mounts"
[oom.git] / kubernetes / sdc / charts / sdc-cs / templates / job.yaml
1 # Copyright © 2017 Amdocs, AT&T, Bell Canada
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 apiVersion: batch/v1
16 kind: Job
17 metadata:
18   name: {{ include "common.fullname" . }}-config-cassandra
19   namespace: {{ include "common.namespace" . }}
20   labels:
21     app: {{ include "common.name" . }}-job
22     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
23     release: {{ .Release.Name }}
24     heritage: {{ .Release.Service }}
25 spec:
26   template:
27     metadata:
28       labels:
29         app: {{ include "common.name" . }}-job
30         release: {{ .Release.Name }}
31     spec:
32       restartPolicy: Never
33       initContainers:
34       - name: {{ include "common.name" . }}-init-readiness
35         image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
36         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
37         command:
38         - /root/ready.py
39         args:
40         - --container-name
41         - sdc-cs
42         env:
43         - name: NAMESPACE
44           valueFrom:
45             fieldRef:
46               apiVersion: v1
47               fieldPath: metadata.namespace
48       containers:
49       - name: {{ include "common.name" . }}-job
50         image: "{{ include "common.repository" . }}/{{ .Values.cassandraInitImage }}"
51         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
52         volumeMounts:
53         - name: {{ include "common.fullname" . }}-environments
54           mountPath: /root/chef-solo/environments/
55         - name: {{ include "common.fullname" . }}-data
56           mountPath: /var/lib/cassandra/
57         - name: {{ include "common.fullname" . }}-chef-cache
58           mountPath: /root/chef-solo/cache
59         env:
60         - name: ENVNAME
61           value: {{ .Values.global.env.name }}
62         - name: RELEASE
63           value: {{ .Values.config.release }}
64         - name: SDC_USER
65           valueFrom:
66             secretKeyRef: {name: {{ .Release.Name }}-sdc-cs-secrets, key: sdc_user}
67         - name: SDC_PASSWORD
68           valueFrom:
69             secretKeyRef: {name: {{ .Release.Name }}-sdc-cs-secrets, key: sdc_password}
70         - name: CS_PASSWORD
71           valueFrom:
72             secretKeyRef: {name: {{ .Release.Name }}-sdc-cs-secrets, key: cs_password}
73         - name: HOST_IP
74           valueFrom:
75             fieldRef:
76               fieldPath: status.podIP
77       volumes:
78       - name: {{ include "common.fullname" . }}-environments
79         configMap:
80           name: {{ .Release.Name }}-sdc-environments-configmap
81           defaultMode: 0755
82       - name: {{ include "common.fullname" . }}-data
83       {{- if .Values.persistence.enabled }}
84         persistentVolumeClaim:
85           claimName: {{ include "common.fullname" . }}
86       {{- else }}
87         emptyDir: {}
88       {{- end }}
89       - name: {{ include "common.fullname" . }}-chef-cache
90         emptyDir: {}
91       imagePullSecrets:
92       - name: "{{ include "common.namespace" . }}-docker-registry-key"
93       restartPolicy: Never