Merge "[AAI] Add model-loader tracing config"
[oom.git] / kubernetes / sdc / components / sdc-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.kubernetes.io/name: {{ include "common.name" . }}-job
27         helm.sh/chart: {{ include "common.chart" . }}
28         app.kubernetes.io/instance: {{ include "common.release" . }}
29         app.kubernetes.io/managed-by: {{ .Release.Service }}
30     spec:
31       restartPolicy: Never
32       initContainers:
33       - name: {{ include "common.name" . }}-init-readiness
34         image: {{ include "repositoryGenerator.image.readiness" . }}
35         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
36         command:
37         - /app/ready.py
38         args:
39         - --service-name
40         - sdc-be
41         - "-t"
42         - "35"
43         env:
44         - name: NAMESPACE
45           valueFrom:
46             fieldRef:
47               apiVersion: v1
48               fieldPath: metadata.namespace
49         resources:
50           limits:
51             cpu: "100m"
52             memory: "500Mi"
53           requests:
54             cpu: "3m"
55             memory: "20Mi"
56       containers:
57       - name: {{ include "common.name" . }}-job
58         image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.backendInitImage }}
59         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
60         volumeMounts:
61         - name: {{ include "common.fullname" . }}-environments
62           mountPath: /home/onap/chef-solo/environments/
63         - name: sdc-logs
64           mountPath: /home/onap/logs
65         env:
66         - name: ENVNAME
67           value: {{ .Values.env.name }}
68         - name: HOST_IP
69           valueFrom:
70             fieldRef:
71               fieldPath: status.podIP
72         resources:
73           limits:
74             cpu: "800m"
75             memory: "1Gi"
76           requests:
77             cpu: "200m"
78             memory: "200Mi"
79       {{ include "common.waitForJobContainer" . | indent 6 | trim }}
80       serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
81       volumes:
82         - name: {{ include "common.fullname" . }}-environments
83           configMap:
84             name: {{ include "common.release" . }}-sdc-environments-configmap
85             defaultMode: 0755
86         - name: sdc-logs
87           emptyDir: {}
88       {{- include "common.imagePullSecrets" . | nindent 6 }}