Run SDC pods as non-root
[oom.git] / kubernetes / sdc / charts / sdc-fe / templates / deployment.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 # Modifications Copyright © 2018 AT&T, 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: extensions/v1beta1
17 kind: Deployment
18 metadata:
19   name: {{ include "common.fullname" . }}
20   namespace: {{ include "common.namespace" . }}
21   labels:
22     app: {{ include "common.name" . }}
23     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
24     release: {{ include "common.release" . }}
25     heritage: {{ .Release.Service }}
26 spec:
27   replicas: {{ .Values.replicaCount }}
28   template:
29     metadata:
30       labels:
31         app: {{ include "common.name" . }}
32         release: {{ include "common.release" . }}
33     spec:
34       initContainers:
35       - name: {{ include "common.name" . }}-job-completion
36         image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
37         imagePullPolicy: "{{ .Values.global.pullPolicy | default .Values.pullPolicy }}"
38         command:
39         - /root/job_complete.py
40         args:
41         - --job-name
42         - {{ include "common.release" . }}-sdc-be-config-backend
43         env:
44         - name: NAMESPACE
45           valueFrom:
46             fieldRef:
47               apiVersion: v1
48               fieldPath: metadata.namespace
49       containers:
50         - name: {{ include "common.name" . }}
51           image: "{{ include "common.repository" . }}/{{ .Values.image }}"
52           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
53           ports:
54           - containerPort: {{ .Values.service.internalPort }}
55           - containerPort: {{ .Values.service.internalPort2 }}
56           {{ if eq .Values.liveness.enabled true }}
57           livenessProbe:
58             tcpSocket:
59               port: {{ .Values.service.internalPort2 }}
60             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
61             periodSeconds: {{ .Values.liveness.periodSeconds }}
62             timeoutSeconds: {{ .Values.liveness.timeoutSeconds }}
63           {{ end }}
64           readinessProbe:
65             tcpSocket:
66               port: {{ .Values.service.internalPort2 }}
67             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
68             periodSeconds: {{ .Values.readiness.periodSeconds }}
69             timeoutSeconds: {{ .Values.liveness.timeoutSeconds }}
70           resources:
71 {{ include "common.resources" . | indent 12 }}
72           env:
73           - name: ENVNAME
74             value: {{ .Values.global.env.name }}
75           - name: HOST_IP
76             valueFrom:
77               fieldRef:
78                 fieldPath: status.podIP
79           - name: JAVA_OPTIONS
80             value: {{ .Values.config.javaOptions }}
81           volumeMounts:
82           - name: {{ include "common.fullname" . }}-environments
83             mountPath: /var/lib/jetty/chef-solo/environments/
84           - name: {{ include "common.fullname" . }}-localtime
85             mountPath: /etc/localtime
86             readOnly: true
87           - name: {{ include "common.fullname" . }}-logs
88             mountPath: /var/log/onap
89           - name: {{ include "common.fullname" . }}-configs
90             mountPath: /var/lib/jetty/config/catalog-fe/plugins-configuration.yaml
91             subPath: plugins-configuration.yaml
92           - name: {{ include "common.fullname" . }}-logback
93             mountPath: /tmp/logback.xml
94             subPath: logback.xml
95           lifecycle:
96             postStart:
97               exec:
98                 command: ["/bin/sh", "-c", "export LOG=wait_logback.log; touch $LOG; export SRC=/tmp/logback.xml; export DST=/var/lib/jetty/config/catalog-fe/; while [ ! -e $DST ]; do echo 'Waiting for $DST...' >> $LOG; sleep 5; done; sleep 2; /bin/cp -f $SRC $DST; echo 'Done' >> $LOG"]
99         # side car containers
100         - name: {{ include "common.name" . }}-filebeat-onap
101           image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
102           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
103           volumeMounts:
104           - name: {{ include "common.fullname" . }}-filebeat-conf
105             mountPath: /usr/share/filebeat/filebeat.yml
106             subPath: filebeat.yml
107           - name: {{ include "common.fullname" . }}-logs
108             mountPath: /var/log/onap
109           - name: {{ include "common.fullname" . }}-data-filebeat
110             mountPath: /usr/share/filebeat/data
111       volumes:
112         - name: {{ include "common.fullname" . }}-localtime
113           hostPath:
114             path: /etc/localtime
115         - name: {{ include "common.fullname" . }}-filebeat-conf
116           configMap:
117             name: {{ include "common.release" . }}-sdc-filebeat-configmap
118         - name: {{ include "common.fullname" . }}-data-filebeat
119           emptyDir: {}
120         - name: {{ include "common.fullname" . }}-configs
121           configMap:
122             name : {{ include "common.fullname" . }}-plugins-configmap
123             defaultMode: 0777
124         - name: {{ include "common.fullname" . }}-logback
125           configMap:
126             name : {{ include "common.fullname" . }}-logging-configmap
127         - name: {{ include "common.fullname" . }}-environments
128           configMap:
129             name: {{ include "common.release" . }}-sdc-environments-configmap
130             defaultMode: 0755
131         - name:  {{ include "common.fullname" . }}-logs
132           emptyDir: {}
133       imagePullSecrets:
134       - name: "{{ include "common.namespace" . }}-docker-registry-key"