41996ff4cddab85263915891f2d804ea2579b39a
[oom.git] / kubernetes / sdc / components / sdc-onboarding-be / templates / job.yaml
1 {{/*
2 # Copyright © 2017 Amdocs, AT&T, Bell Canada
3 # Modifications Copyright © 2018  ZTE
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 #       http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 */}}
17
18 apiVersion: batch/v1
19 kind: Job
20 metadata: {{- include "common.resourceMetadata" . | nindent 2 }}
21 spec:
22   backoffLimit: 20
23   template:
24     metadata:
25       labels:
26         app: {{ include "common.name" . }}-job
27         release: {{ include "common.release" . }}
28     spec:
29       restartPolicy: Never
30       initContainers:
31       - name: {{ include "common.name" . }}-job-completion
32         image: {{ include "repositoryGenerator.image.readiness" . }}
33         imagePullPolicy: "{{ .Values.global.pullPolicy | default .Values.pullPolicy }}"
34         command:
35         - /app/ready.py
36         args:
37         - --job-name
38         - {{ include "common.release" . }}-sdc-cs
39         - "-t"
40         - "20"
41         env:
42         - name: NAMESPACE
43           valueFrom:
44             fieldRef:
45               apiVersion: v1
46               fieldPath: metadata.namespace
47         resources:
48           limits:
49             cpu: 100m
50             memory: 100Mi
51           requests:
52             cpu: 3m
53             memory: 20Mi
54       containers:
55       - name: {{ include "common.name" . }}-job
56         image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.onboardingInitImage }}
57         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
58         {{- if include "common.onServiceMesh" . }}
59         args:
60         - echo "waiting 10s for istio side cars to be up"; sleep 10s; /home/sdc/startup.sh
61         command:
62         - /bin/sh
63         - -c
64         {{- end }}
65         volumeMounts:
66         - name: {{ include "common.fullname" . }}-environments
67           mountPath: /home/sdc/chef-solo/environments/
68         env:
69         - name: ENVNAME
70           value: {{ .Values.env.name }}
71         - name: HOST_IP
72           valueFrom:
73             fieldRef:
74               fieldPath: status.podIP
75         - name: SDC_USER
76           valueFrom:
77             secretKeyRef: {name: {{ include "common.release" . }}-sdc-cs-secrets, key: sdc_user}
78         - name: SDC_PASSWORD
79           valueFrom:
80             secretKeyRef: {name: {{ include "common.release" . }}-sdc-cs-secrets, key: sdc_password}
81         - name: CS_PASSWORD
82           valueFrom:
83             secretKeyRef: {name: {{ include "common.release" . }}-sdc-cs-secrets, key: cs_password}
84         - name: CS_HOST_IP
85           value: "{{ .Values.global.sdc_cassandra.serviceName }}"
86         resources:
87           limits:
88             cpu: 800m
89             memory: 1024Mi
90           requests:
91             cpu: 200m
92             memory: 200Mi
93       {{ include "common.waitForJobContainer" . | indent 6 | trim }}
94       volumes:
95       - name: {{ include "common.fullname" . }}-environments
96         configMap:
97           name: {{ include "common.release" . }}-sdc-environments-configmap
98           defaultMode: 0755
99       imagePullSecrets:
100       - name: "{{ include "common.namespace" . }}-docker-registry-key"
101       restartPolicy: Never