[CONSUL] Add limits to consul chart.
[oom.git] / kubernetes / sdc / components / sdc-be / templates / job.yaml
1 # Copyright © 2017 Amdocs, AT&T, Bell Canada
2 # Modifications Copyright © 2018 ZTE
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #       http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 apiVersion: batch/v1
17 kind: Job
18 metadata:
19   name: {{ include "common.fullname" . }}-config-backend
20   namespace: {{ include "common.namespace" . }}
21   labels: {{- include "common.labels" . | nindent 4 }}
22 spec:
23   backoffLimit: 20
24   template:
25     metadata:
26       labels:
27         app.kubernetes.io/name: {{ include "common.name" . }}-job
28         helm.sh/chart: {{ include "common.chart" . }}
29         app.kubernetes.io/instance: {{ include "common.release" . }}
30         app.kubernetes.io/managed-by: {{ .Release.Service }}
31     spec:
32       restartPolicy: Never
33       initContainers:
34       - name: {{ include "common.name" . }}-init-readiness
35         image: "{{ include "common.repository" . }}/{{ .Values.global.readinessImage }}"
36         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
37         command:
38         - /app/ready.py
39         args:
40         - --container-name
41         - sdc-be
42         - "-t"
43         - "35"
44         env:
45         - name: NAMESPACE
46           valueFrom:
47             fieldRef:
48               apiVersion: v1
49               fieldPath: metadata.namespace
50         resources:
51           limits:
52             cpu: 100m
53             memory: 100Mi
54           requests:
55             cpu: 3m
56             memory: 20Mi
57       containers:
58       - name: {{ include "common.name" . }}-job
59         image: "{{ include "common.repository" . }}/{{ .Values.backendInitImage }}"
60         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
61         volumeMounts:
62         - name: {{ include "common.fullname" . }}-environments
63           mountPath: /home/onap/chef-solo/environments/
64         - name: sdc-logs
65           mountPath: /var/lib/jetty/logs
66         env:
67         - name: ENVNAME
68           value: {{ .Values.env.name }}
69         - name: HOST_IP
70           valueFrom:
71             fieldRef:
72               fieldPath: status.podIP
73         resources:
74           limits:
75             cpu: 800m
76             memory: 1024Mi
77           requests:
78             cpu: 200m
79             memory: 200Mi
80       volumes:
81         - name: {{ include "common.fullname" . }}-environments
82           configMap:
83             name: {{ include "common.release" . }}-sdc-environments-configmap
84             defaultMode: 0755
85         - name: sdc-logs
86           emptyDir: {}
87       imagePullSecrets:
88       - name: "{{ include "common.namespace" . }}-docker-registry-key"
89       restartPolicy: Never