c1babf30634efe6d30fbf5c3352a9949956fb7cc
[oom.git] / kubernetes / sdc / charts / sdc-wfd-fe / templates / deployment.yaml
1 # Copyright © 2018 Amdocs, Bell Canada
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 apiVersion: extensions/v1beta1
16 kind: Deployment
17 metadata:
18   name: {{ include "common.fullname" . }}
19   namespace: {{ include "common.namespace" . }}
20   labels:
21     app: {{ include "common.name" . }}
22     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
23     release: {{ .Release.Name }}
24     heritage: {{ .Release.Service }}
25 spec:
26   replicas: {{ .Values.replicaCount }}
27   template:
28     metadata:
29       labels:
30         app: {{ include "common.name" . }}
31         release: {{ .Release.Name }}
32     spec:
33       initContainers:
34       - name: {{ include "common.name" . }}-readiness
35         command:
36         - /root/ready.py
37         args:
38         - --container-name
39         - "sdc-wfd-be"
40         env:
41         - name: NAMESPACE
42           valueFrom:
43             fieldRef:
44               apiVersion: v1
45               fieldPath: metadata.namespace
46         image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
47         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
48       containers:
49         - name: {{ include "common.name" . }}
50           image: "{{ include "common.repository" . }}/{{ .Values.image }}"
51           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
52           ports:
53           - containerPort: {{ .Values.service.internalPort }}
54           {{ if .Values.liveness.enabled }}
55           livenessProbe:
56             tcpSocket:
57               port: {{ .Values.service.internalPort }}
58             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
59             periodSeconds: {{ .Values.liveness.periodSeconds }}
60           {{ end }}
61           readinessProbe:
62             tcpSocket:
63               port: {{ .Values.service.internalPort }}
64             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
65             periodSeconds: {{ .Values.readiness.periodSeconds }}
66           env:
67           - name: ENVNAME
68             value: {{ .Values.global.env.name }}
69           - name: JAVA_OPTIONS
70             value: {{ .Values.config.javaOptions }}
71           - name: BACKEND
72             value: {{ .Values.config.backendServerURL }}
73           - name: IS_HTTPS
74             value: "{{ .Values.config.isHttpsEnabled}}"
75             {{ if and .Values.config.isHttpsEnabled (eq .Values.security.isDefaultStore false) }}
76           - name: KEYSTORE_PASS
77             {{- if .Values.global.security.keysFromCa }}
78             valueFrom:
79               secretKeyRef:
80                 name: mft-sdc
81                 key: keystore-password.txt
82             {{ else }}
83             value: {{ .Values.global.security.keyStorePass}}
84             {{- end }}
85           - name: TRUSTSTORE_PASS
86             {{- if .Values.global.security.keysFromCa }}
87             valueFrom:
88               secretKeyRef:
89                 name: mft-catruststore
90                 key: keystore-password.txt
91             {{ else }}
92             value: {{ .Values.global.security.trustStorePass}}
93             {{- end }}
94           - name: TRUSTSTORE_PATH
95             value: "{{ .Values.security.storePath }}/{{ .Values.security.truststoreFilename }}"
96           - name: KEYSTORE_PATH
97             value: "{{ .Values.security.storePath }}/{{ .Values.security.keystoreFilename }}"
98           - name: TRUSTSTORE_TYPE
99             value: {{ .Values.security.truststore.type }}
100           - name: KEYSTORE_TYPE
101             value: {{ .Values.security.keystore.type }}
102             {{ end }}
103           volumeMounts:
104           {{ if and .Values.config.isHttpsEnabled (eq .Values.security.isDefaultStore false) }}
105           - name: {{ include "common.fullname" . }}-jetty-https-truststore
106             mountPath: /var/lib/jetty/{{ .Values.security.storePath }}/{{ .Values.security.truststoreFilename }}
107             subPath: {{ .Values.security.truststoreFilename }}
108           - name: {{ include "common.fullname" . }}-jetty-https-keystore
109             mountPath: /var/lib/jetty/etc/{{ .Values.security.storePath }}/{{ .Values.security.keystoreFilename }}
110             subPath: {{ .Values.security.keystoreFilename }}
111           {{ end }}
112           - name: {{ include "common.fullname" . }}-localtime
113             mountPath: /etc/localtime
114             readOnly: true
115           resources:
116 {{ include "common.resources" . | indent 12 }}
117         {{- if .Values.nodeSelector }}
118         nodeSelector:
119 {{ toYaml .Values.nodeSelector | indent 10 }}
120         {{- end -}}
121         {{- if .Values.affinity }}
122         affinity:
123 {{ toYaml .Values.affinity | indent 10 }}
124         {{- end }}
125
126         # side car containers
127         - name: {{ include "common.name" . }}-filebeat-onap
128           image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
129           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
130           volumeMounts:
131           - name: {{ include "common.fullname" . }}-filebeat-conf
132             mountPath: /usr/share/filebeat/filebeat.yml
133             subPath: filebeat.yml
134           - name: {{ include "common.fullname" . }}-logs
135             mountPath: /var/log/onap
136           - name: {{ include "common.fullname" . }}-data-filebeat
137             mountPath: /usr/share/filebeat/data
138       volumes:
139         - name: {{ include "common.fullname" . }}-localtime
140           hostPath:
141             path: /etc/localtime
142         - name: {{ include "common.fullname" . }}-filebeat-conf
143           configMap:
144             name: {{ .Release.Name }}-sdc-filebeat-configmap
145         - name: {{ include "common.fullname" . }}-data-filebeat
146           emptyDir: {}
147         - name:  {{ include "common.fullname" . }}-logs
148           emptyDir: {}
149       imagePullSecrets:
150       - name: "{{ include "common.namespace" . }}-docker-registry-key"