Merge "[AAI] Add model-loader tracing config"
[oom.git] / kubernetes / sdc / components / sdc-cs / 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" . }}-init-readiness
32         image: {{ include "repositoryGenerator.image.readiness" . }}
33         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
34         command:
35         - /app/ready.py
36         args:
37         - --service-name
38         - {{ .Values.global.sdc_cassandra.serviceName }}
39         - "-t"
40         - "15"
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.cassandraInitImage }}
57         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
58         volumeMounts:
59         - name: {{ include "common.fullname" . }}-environments
60           mountPath: /home/sdc/chef-solo/environments/
61         - name: {{ include "common.fullname" . }}-chef-cache
62           mountPath: /home/sdc/chef-solo/cache
63         - name: {{ include "common.fullname" . }}-cqlshrc
64           mountPath: /home/sdc/.cassandra
65         env:
66         - name: ENVNAME
67           value: {{ .Values.env.name }}
68         - name: RELEASE
69           value: {{ .Values.config.release }}
70         - name: SDC_USER
71           valueFrom:
72             secretKeyRef: {name: {{ include "common.release" . }}-sdc-cs-secrets, key: sdc_user}
73         - name: SDC_PASSWORD
74           valueFrom:
75             secretKeyRef: {name: {{ include "common.release" . }}-sdc-cs-secrets, key: sdc_password}
76         - name: CS_PASSWORD
77           valueFrom:
78             secretKeyRef: {name: {{ include "common.release" . }}-sdc-cs-secrets, key: cs_password}
79         - name: HOST_IP
80           valueFrom:
81             fieldRef:
82               fieldPath: status.podIP
83         resources:
84           limits:
85             cpu: "800m"
86             memory: "1Gi"
87           requests:
88             cpu: "200m"
89             memory: "300Mi"
90       {{ include "common.waitForJobContainer" . | indent 6 | trim }}
91       serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
92       volumes:
93       - name: {{ include "common.fullname" . }}-environments
94         configMap:
95           name: {{ include "common.release" . }}-sdc-environments-configmap
96           defaultMode: 0755
97       - name: {{ include "common.fullname" . }}-chef-cache
98         emptyDir: {}
99       - name: {{ include "common.fullname" . }}-cqlshrc
100         configMap:
101           name: {{ include "common.release" . }}-sdc-cqlshrc
102       {{- include "common.imagePullSecrets" . | nindent 6 }}