Merge "[AAI] Add model-loader tracing config"
[oom.git] / kubernetes / sdc / components / sdc-wfd-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 {{ if .Values.initJob.enabled }}
19 apiVersion: batch/v1
20 kind: Job
21 metadata: {{- include "common.resourceMetadata" . | nindent 2 }}
22 spec:
23   backoffLimit: 20
24   template:
25     metadata:
26       labels:
27         app: {{ include "common.name" . }}-job
28         release: {{ include "common.release" . }}
29     spec:
30       restartPolicy: Never
31       initContainers:
32         - name: {{ include "common.name" . }}-init-readiness
33           image: {{ include "repositoryGenerator.image.readiness" . }}
34           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
35           command:
36           - /app/ready.py
37           args:
38           - --job-name
39           - {{ include "common.release" . }}-sdc-cs
40           - "-t"
41           - "20"
42           env:
43           - name: NAMESPACE
44             valueFrom:
45               fieldRef:
46                 apiVersion: v1
47                 fieldPath: metadata.namespace
48           resources:
49             limits:
50               cpu: "100m"
51               memory: "500Mi"
52             requests:
53               cpu: "3m"
54               memory: "20Mi"
55       containers:
56       - name: {{ include "common.name" . }}-job
57         image:
58           {{ include "repositoryGenerator.repository" . }}/{{ .Values.configInitImage }}
59         imagePullPolicy:
60           {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
61         {{- if include "common.onServiceMesh" . }}
62         args:
63         - echo "waiting 10s for istio side cars to be up"; sleep 10s; /start.sh
64         command:
65         - /bin/sh
66         - -c
67         {{- end }}
68         volumeMounts:
69           - name: {{ include "common.fullname" . }}-cqlshrc
70             mountPath: /home/sdc/.cassandra
71         env:
72           - name: CS_HOST
73             value: "{{ .Values.global.sdc_cassandra.serviceName }}"
74           - name: CS_PORT
75             value: {{ .Values.config.cassandraClientPort | quote }}
76           - name: CS_AUTHENTICATE
77             value: {{ .Values.config.cassandraAuthenticationEnabled | quote }}
78           - name: CS_USER
79             valueFrom: {secretKeyRef: {name: {{ include "common.release" . }}-sdc-cs-secrets, key: sdc_user}}
80           - name: CS_PASSWORD
81             valueFrom: {secretKeyRef: {name: {{ include "common.release" . }}-sdc-cs-secrets, key: sdc_password}}
82         resources: {{ include "common.resources" . | nindent 10 }}
83       {{ include "common.waitForJobContainer" . | indent 6 | trim }}
84       serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
85       volumes:
86         - name: {{ include "common.fullname" . }}-cqlshrc
87           configMap:
88             name: {{ include "common.release" . }}-sdc-cqlshrc
89       {{- include "common.imagePullSecrets" . | nindent 6 }}
90 {{ end }}