blob: c2203d5c2094a02791f2ddadedc4ec3e2a3e6f31 [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-backend
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:
Mike Elliott6482f502018-04-30 15:02:43 -040026 backoffLimit: 20
Mandeep Khindaa1047f42018-03-22 02:12:15 +000027 template:
28 metadata:
29 labels:
30 app: {{ include "common.name" . }}-job
31 release: {{ .Release.Name }}
32 spec:
33 restartPolicy: Never
34 initContainers:
35 - name: {{ include "common.name" . }}-init-readiness
36 image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
37 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
38 command:
39 - /root/ready.py
40 args:
41 - --container-name
42 - sdc-be
43 env:
44 - name: NAMESPACE
45 valueFrom:
46 fieldRef:
47 apiVersion: v1
48 fieldPath: metadata.namespace
49 containers:
50 - name: {{ include "common.name" . }}-job
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000051 image: "{{ include "common.repository" . }}/{{ .Values.backendInitImage }}"
Mandeep Khindaa1047f42018-03-22 02:12:15 +000052 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
53 volumeMounts:
54 - name: {{ include "common.fullname" . }}-environments
55 mountPath: /root/chef-solo/environments/
56 env:
57 - name: ENVNAME
58 value: {{ .Values.global.env.name }}
Mandeep Khinda403c1c12018-04-19 23:15:43 +000059 - name: HOST_IP
60 valueFrom:
61 fieldRef:
62 fieldPath: status.podIP
Mandeep Khindaa1047f42018-03-22 02:12:15 +000063 volumes:
64 - name: {{ include "common.fullname" . }}-environments
65 configMap:
66 name: {{ .Release.Name }}-sdc-environments-configmap
67 defaultMode: 0755
68 imagePullSecrets:
69 - name: "{{ include "common.namespace" . }}-docker-registry-key"
70 restartPolicy: Never