[SDC] Add missing dependency to cassandra chart
[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:
21   name: {{ include "common.fullname" . }}-cassandra-init
22   namespace: {{ include "common.namespace" . }}
23   labels:
24     app: {{ include "common.name" . }}-job
25     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
26     release: {{ include "common.release" . }}
27     heritage: {{ .Release.Service }}
28 spec:
29   backoffLimit: 20
30   template:
31     metadata:
32       labels:
33         app: {{ include "common.name" . }}-job
34         release: {{ include "common.release" . }}
35     spec:
36       restartPolicy: Never
37       initContainers:
38       - name: {{ include "common.name" . }}-job-completion
39         image: {{ include "repositoryGenerator.image.readiness" . }}
40         imagePullPolicy: "{{ .Values.global.pullPolicy | default .Values.pullPolicy }}"
41         command:
42         - /app/ready.py
43         args:
44         - --job-name
45         - {{ include "common.release" . }}-sdc-cs-config-cassandra
46         - "-t"
47         - "20"
48         env:
49         - name: NAMESPACE
50           valueFrom:
51             fieldRef:
52               apiVersion: v1
53               fieldPath: metadata.namespace
54         resources:
55           limits:
56             cpu: 100m
57             memory: 100Mi
58           requests:
59             cpu: 3m
60             memory: 20Mi
61       containers:
62       - name: {{ include "common.name" . }}-job
63         image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.onboardingInitImage }}
64         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
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       volumes:
94       - name: {{ include "common.fullname" . }}-environments
95         configMap:
96           name: {{ include "common.release" . }}-sdc-environments-configmap
97           defaultMode: 0755
98       imagePullSecrets:
99       - name: "{{ include "common.namespace" . }}-docker-registry-key"
100       restartPolicy: Never