adding license to SDC chart templates
[oom.git] / kubernetes / sdc / charts / sdc-be / 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-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 }}
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-be
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.backendInitImage }}"
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       volumes:
59         - name: {{ include "common.fullname" . }}-environments
60           configMap:
61             name: {{ .Release.Name }}-sdc-environments-configmap
62             defaultMode: 0755
63       imagePullSecrets:
64       - name: "{{ include "common.namespace" . }}-docker-registry-key"
65       restartPolicy: Never