Run SDC pods as non-root
[oom.git] / kubernetes / sdc / charts / sdc-cs / 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-cassandra
20   namespace: {{ include "common.namespace" . }}
21   labels:
22     app: {{ include "common.name" . }}-job
23     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
24     release: {{ include "common.release" . }}
25     heritage: {{ .Release.Service }}
26 spec:
27   backoffLimit: 20
28   template:
29     metadata:
30       labels:
31         app: {{ include "common.name" . }}-job
32         release: {{ include "common.release" . }}
33     spec:
34       restartPolicy: Never
35       initContainers:
36       - name: {{ include "common.name" . }}-init-readiness
37         image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
38         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
39         command:
40         - /root/ready.py
41         args:
42         - --container-name
43         {{- if .Values.global.cassandra.localCluster }}
44         - sdc-cs
45         {{- else }}
46         - cassandra
47         {{- end }}
48         env:
49         - name: NAMESPACE
50           valueFrom:
51             fieldRef:
52               apiVersion: v1
53               fieldPath: metadata.namespace
54       containers:
55       - name: {{ include "common.name" . }}-job
56         image: "{{ include "common.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         env:
64         - name: ENVNAME
65           value: {{ .Values.global.env.name }}
66         - name: RELEASE
67           value: {{ .Values.config.release }}
68         - name: SDC_USER
69           valueFrom:
70             secretKeyRef: {name: {{ include "common.release" . }}-sdc-cs-secrets, key: sdc_user}
71         - name: SDC_PASSWORD
72           valueFrom:
73             secretKeyRef: {name: {{ include "common.release" . }}-sdc-cs-secrets, key: sdc_password}
74         - name: CS_PASSWORD
75           valueFrom:
76             secretKeyRef: {name: {{ include "common.release" . }}-sdc-cs-secrets, key: cs_password}
77         - name: HOST_IP
78           valueFrom:
79             fieldRef:
80               fieldPath: status.podIP
81       volumes:
82       - name: {{ include "common.fullname" . }}-environments
83         configMap:
84           name: {{ include "common.release" . }}-sdc-environments-configmap
85           defaultMode: 0755
86       - name: {{ include "common.fullname" . }}-chef-cache
87         emptyDir: {}
88       imagePullSecrets:
89       - name: "{{ include "common.namespace" . }}-docker-registry-key"
90       restartPolicy: Never