blob: c6e9c190e339a839cad089162e012629ddf41d33 [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
50 image: "{{ .Values.global.repository | default .Values.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 env:
56 - name: ENVNAME
57 value: {{ .Values.global.env.name }}
58 - name: SDC_USER
59 valueFrom:
60 secretKeyRef: {name: {{ include "common.fullname" . }}, key: sdc_user}
61 - name: SDC_PASSWORD
62 valueFrom:
63 secretKeyRef: {name: {{ include "common.fullname" . }}, key: sdc_password}
64 - name: CS_PASSWORD
65 valueFrom:
66 secretKeyRef: {name: {{ include "common.fullname" . }}, key: cs_password}
67 volumes:
68 - name: {{ include "common.fullname" . }}-environments
69 configMap:
70 name: {{ .Release.Name }}-sdc-environments-configmap
71 defaultMode: 0755
72 imagePullSecrets:
73 - name: "{{ include "common.namespace" . }}-docker-registry-key"
74 restartPolicy: Never