Merge "[AAI] Add model-loader tracing config"
[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: "500Mi"
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         - name: {{ include "common.fullname" . }}-cqlshrc
69           mountPath: /home/sdc/.cassandra
70         env:
71         - name: ENVNAME
72           value: {{ .Values.env.name }}
73         - name: HOST_IP
74           valueFrom:
75             fieldRef:
76               fieldPath: status.podIP
77         - name: SDC_USER
78           valueFrom:
79             secretKeyRef: {name: {{ include "common.release" . }}-sdc-cs-secrets, key: sdc_user}
80         - name: SDC_PASSWORD
81           valueFrom:
82             secretKeyRef: {name: {{ include "common.release" . }}-sdc-cs-secrets, key: sdc_password}
83         - name: CS_PASSWORD
84           valueFrom:
85             secretKeyRef: {name: {{ include "common.release" . }}-sdc-cs-secrets, key: cs_password}
86         - name: CS_HOST_IP
87           value: "{{ .Values.global.sdc_cassandra.serviceName }}"
88         resources:
89           limits:
90             cpu: "800m"
91             memory: "1Gi"
92           requests:
93             cpu: "200m"
94             memory: "200Mi"
95       {{ include "common.waitForJobContainer" . | indent 6 | trim }}
96       serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
97       volumes:
98       - name: {{ include "common.fullname" . }}-environments
99         configMap:
100           name: {{ include "common.release" . }}-sdc-environments-configmap
101           defaultMode: 0755
102       - name: {{ include "common.fullname" . }}-cqlshrc
103         configMap:
104           name: {{ include "common.release" . }}-sdc-cqlshrc
105       {{- include "common.imagePullSecrets" . | nindent 6 }}