[SDC] Update SDC latest images for Guilin
[oom.git] / kubernetes / sdc / components / sdc-be / templates / job.yaml
1 # Copyright © 2017 Amdocs, AT&T, Bell Canada
2 # Modifications Copyright © 2018 ZTE
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #       http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 apiVersion: batch/v1
17 kind: Job
18 metadata:
19   name: {{ include "common.fullname" . }}-config-backend
20   namespace: {{ include "common.namespace" . }}
21   labels: {{- include "common.labels" . | nindent 4 }}
22 spec:
23   backoffLimit: 20
24   template:
25     metadata:
26       labels:
27         app.kubernetes.io/name: {{ include "common.name" . }}-job
28         helm.sh/chart: {{ include "common.chart" . }}
29         app.kubernetes.io/instance: {{ include "common.release" . }}
30         app.kubernetes.io/managed-by: {{ .Release.Service }}
31     spec:
32       restartPolicy: Never
33       initContainers:
34       - name: {{ include "common.name" . }}-init-readiness
35         image: "{{ include "common.repository" . }}/{{ .Values.global.readinessImage }}"
36         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
37         command:
38         - /app/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: "{{ include "common.repository" . }}/{{ .Values.backendInitImage }}"
51         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
52         volumeMounts:
53         - name: {{ include "common.fullname" . }}-environments
54           mountPath: /home/onap/chef-solo/environments/
55         - name: sdc-logs
56           mountPath: /var/lib/jetty/logs
57         env:
58         - name: ENVNAME
59           value: {{ .Values.env.name }}
60         - name: HOST_IP
61           valueFrom:
62             fieldRef:
63               fieldPath: status.podIP
64       volumes:
65         - name: {{ include "common.fullname" . }}-environments
66           configMap:
67             name: {{ include "common.release" . }}-sdc-environments-configmap
68             defaultMode: 0755
69         - name: sdc-logs
70           emptyDir: {}
71       imagePullSecrets:
72       - name: "{{ include "common.namespace" . }}-docker-registry-key"
73       restartPolicy: Never