[CONSUL] Add limits to consul chart.
[oom.git] / kubernetes / sdc / components / 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: apps/v1
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   selector:
28     matchLabels:
29       app: {{ include "common.name" . }}
30   replicas: {{ .Values.replicaCount }}
31   template:
32     metadata:
33       labels:
34         app: {{ include "common.name" . }}
35         release: {{ include "common.release" . }}
36     spec:
37       initContainers: {{ include "common.certInitializer.initContainer" . | nindent 6 }}
38       - name: {{ include "common.name" . }}-job-completion
39         image: "{{ include "common.repository" . }}/{{ .Values.global.readinessImage }}"
40         imagePullPolicy: "{{ .Values.global.pullPolicy | default .Values.pullPolicy }}"
41         command:
42         - /app/ready.py
43         args:
44         - --job-name
45         - {{ include "common.release" . }}-sdc-be-config-backend
46         - "-t"
47         - "35"
48         env:
49         - name: NAMESPACE
50           valueFrom:
51             fieldRef:
52               apiVersion: v1
53               fieldPath: metadata.namespace
54         resources:
55           limits:
56             cpu: 100m
57             memory: 100Mi
58           requests:
59             cpu: 3m
60             memory: 20Mi
61       {{- if .Values.global.aafEnabled }}
62       - name: {{ include "common.name" . }}-update-config
63         image: "{{ .Values.global.envsubstImage }}"
64         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
65         command:
66         - sh
67         args:
68         - "-c"
69         - |
70           export $(grep '^c' {{ .Values.certInitializer.credsPath }}/mycreds.prop | xargs -0)
71           export KEYSTORE_PASS=$cadi_keystore_password_p12
72           export KEYMANAGER_PASS=$cadi_keystore_password_p12
73           export TRUSTSTORE_PASS=$cadi_truststore_password
74           cp {{ .Values.certInitializer.credsPath }}/{{ .Values.certInitializer.keystoreFile }} /config-output
75           cp {{ .Values.certInitializer.credsPath }}/{{ .Values.certInitializer.truststoreFile }} /config-output
76           cd /config-input && \
77           for PFILE in `find . -not -type d | grep -v -F ..`
78           do
79             envsubst <${PFILE} >/config-output/${PFILE}
80             chmod 0755 /config-output/${PFILE}
81           done
82         volumeMounts: {{ include "common.certInitializer.volumeMount" . | nindent 10 }}
83           - name: {{ include "common.fullname" . }}-environments
84             mountPath: /config-input/
85           - name: sdc-environments-output
86             mountPath: /config-output/
87         resources:
88           limits:
89             cpu: 100m
90             memory: 100Mi
91           requests:
92             cpu: 3m
93             memory: 20Mi
94       {{- end }}
95       containers:
96         - name: {{ include "common.name" . }}
97           image: "{{ include "common.repository" . }}/{{ .Values.image }}"
98           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
99           {{- if .Values.global.aafEnabled }}
100           command:
101           - sh
102           args:
103           - "-c"
104           - |
105             sed -i '/trustStorePassword/d' ${JETTY_BASE}/startup.sh
106             ${JETTY_BASE}/startup.sh
107           {{- end }}
108           ports:
109           - containerPort: {{ .Values.service.internalPort }}
110           - containerPort: {{ .Values.service.internalPort2 }}
111           {{ if eq .Values.liveness.enabled true }}
112           livenessProbe:
113             tcpSocket:
114               port: {{ .Values.service.internalPort2 }}
115             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
116             periodSeconds: {{ .Values.liveness.periodSeconds }}
117             timeoutSeconds: {{ .Values.liveness.timeoutSeconds }}
118           {{ end }}
119           readinessProbe:
120             tcpSocket:
121               port: {{ .Values.service.internalPort2 }}
122             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
123             periodSeconds: {{ .Values.readiness.periodSeconds }}
124             timeoutSeconds: {{ .Values.liveness.timeoutSeconds }}
125           resources: {{ include "common.resources" . | nindent 12 }}
126           env:
127           - name: ENVNAME
128             value: {{ .Values.env.name }}
129           - name: HOST_IP
130             valueFrom:
131               fieldRef:
132                 fieldPath: status.podIP
133           - name: JAVA_OPTIONS
134             value: {{ .Values.config.javaOptions }}
135           volumeMounts:
136           - name: sdc-environments-output
137             mountPath: /var/lib/jetty/chef-solo/environments/
138           - name: sdc-environments-output
139             mountPath: /var/lib/jetty/chef-solo/cookbooks/sdc-catalog-fe/files/default/org.onap.sdc.p12
140             subPath: org.onap.sdc.p12
141           - name: sdc-environments-output
142             mountPath: /var/lib/jetty/chef-solo/cookbooks/sdc-catalog-fe/files/default/org.onap.sdc.trust.jks
143             subPath: org.onap.sdc.trust.jks
144           - name: {{ include "common.fullname" . }}-localtime
145             mountPath: /etc/localtime
146             readOnly: true
147           - name: {{ include "common.fullname" . }}-logs
148             mountPath: /var/log/onap
149           - name: {{ include "common.fullname" . }}-configs
150             mountPath: /var/lib/jetty/config/catalog-fe/plugins-configuration.yaml
151             subPath: plugins-configuration.yaml
152           - name: {{ include "common.fullname" . }}-logback
153             mountPath: /tmp/logback.xml
154             subPath: logback.xml
155           lifecycle:
156             postStart:
157               exec:
158                 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"]
159         # side car containers
160         - name: {{ include "common.name" . }}-filebeat-onap
161           image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
162           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
163           volumeMounts:
164           - name: {{ include "common.fullname" . }}-filebeat-conf
165             mountPath: /usr/share/filebeat/filebeat.yml
166             subPath: filebeat.yml
167           - name: {{ include "common.fullname" . }}-logs
168             mountPath: /var/log/onap
169           - name: {{ include "common.fullname" . }}-data-filebeat
170             mountPath: /usr/share/filebeat/data
171           resources:
172             limits:
173               cpu: 100m
174               memory: 100Mi
175             requests:
176               cpu: 3m
177               memory: 20Mi
178       volumes: {{ include "common.certInitializer.volumes" . | nindent 8 }}
179         - name: {{ include "common.fullname" . }}-localtime
180           hostPath:
181             path: /etc/localtime
182         - name: {{ include "common.fullname" . }}-filebeat-conf
183           configMap:
184             name: {{ include "common.release" . }}-sdc-filebeat-configmap
185         - name: {{ include "common.fullname" . }}-data-filebeat
186           emptyDir: {}
187         - name: {{ include "common.fullname" . }}-configs
188           configMap:
189             name : {{ include "common.fullname" . }}-plugins-configmap
190             defaultMode: 0777
191         - name: {{ include "common.fullname" . }}-logback
192           configMap:
193             name : {{ include "common.fullname" . }}-logging-configmap
194         - name: {{ include "common.fullname" . }}-environments
195           configMap:
196             name: {{ include "common.release" . }}-sdc-environments-configmap
197             defaultMode: 0755
198         - name: sdc-environments-output
199           emptyDir: { medium: "Memory" }
200         - name: {{ include "common.fullname" . }}-logs
201           emptyDir: {}
202       imagePullSecrets:
203       - name: "{{ include "common.namespace" . }}-docker-registry-key"