blob: 5318d9149d5d0d1e1695c3271badfd6bbdf6dc4c [file] [log] [blame]
Mandeep Khindab1f9efe2018-03-28 19:01:55 +00001# 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
Mandeep Khindaa1047f42018-03-22 02:12:15 +000015apiVersion: batch/v1
16kind: Job
17metadata:
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 }}
25spec:
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
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000050 image: "{{ include "common.repository" . }}/{{ .Values.cassandraInitImage }}"
Mandeep Khindaa1047f42018-03-22 02:12:15 +000051 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
52 volumeMounts:
53 - name: {{ include "common.fullname" . }}-environments
54 mountPath: /root/chef-solo/environments/
Mandeep Khinda403c1c12018-04-19 23:15:43 +000055 - name: {{ include "common.fullname" . }}-data
56 mountPath: /var/lib/cassandra/
57 - name: {{ include "common.fullname" . }}-chef-cache
58 mountPath: /root/chef-solo/cache
Mandeep Khindaa1047f42018-03-22 02:12:15 +000059 env:
60 - name: ENVNAME
61 value: {{ .Values.global.env.name }}
Mandeep Khinda403c1c12018-04-19 23:15:43 +000062 - name: RELEASE
63 value: {{ .Values.config.release }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +000064 - name: SDC_USER
65 valueFrom:
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000066 secretKeyRef: {name: {{ .Release.Name }}-sdc-cs-secrets, key: sdc_user}
Mandeep Khindaa1047f42018-03-22 02:12:15 +000067 - name: SDC_PASSWORD
68 valueFrom:
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000069 secretKeyRef: {name: {{ .Release.Name }}-sdc-cs-secrets, key: sdc_password}
Mandeep Khindaa1047f42018-03-22 02:12:15 +000070 - name: CS_PASSWORD
71 valueFrom:
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000072 secretKeyRef: {name: {{ .Release.Name }}-sdc-cs-secrets, key: cs_password}
Mandeep Khinda403c1c12018-04-19 23:15:43 +000073 - name: HOST_IP
74 valueFrom:
75 fieldRef:
76 fieldPath: status.podIP
Mandeep Khindaa1047f42018-03-22 02:12:15 +000077 volumes:
Mandeep Khinda403c1c12018-04-19 23:15:43 +000078 - 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: {}
Mandeep Khindaa1047f42018-03-22 02:12:15 +000091 imagePullSecrets:
92 - name: "{{ include "common.namespace" . }}-docker-registry-key"
93 restartPolicy: Never