blob: 5efa20ec733a95c9cf8cdcc98aa6c5718a378877 [file] [log] [blame]
priyanshu3af9db62018-08-16 16:23:52 +05301# 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
kwasiel59cc6a42020-07-23 10:02:49 +000015apiVersion: apps/v1
priyanshu3af9db62018-08-16 16:23:52 +053016kind: Deployment
17metadata:
18 name: {{ include "common.fullname" . }}
19 namespace: {{ include "common.namespace" . }}
20 labels:
21 app: {{ include "common.name" . }}
22 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010023 release: {{ include "common.release" . }}
priyanshu3af9db62018-08-16 16:23:52 +053024 heritage: {{ .Release.Service }}
25spec:
kwasiel59cc6a42020-07-23 10:02:49 +000026 selector:
27 matchLabels:
28 app: {{ include "common.name" . }}
priyanshu3af9db62018-08-16 16:23:52 +053029 replicas: {{ .Values.replicaCount }}
30 template:
31 metadata:
32 labels:
33 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010034 release: {{ include "common.release" . }}
priyanshu3af9db62018-08-16 16:23:52 +053035 spec:
ChrisC742a7b22020-09-04 11:29:57 +020036 initContainers: {{ include "common.certInitializer.initContainer" . | nindent 6 }}
priyanshu3af9db62018-08-16 16:23:52 +053037 - name: {{ include "common.name" . }}-readiness
38 command:
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020039 - /app/ready.py
priyanshu3af9db62018-08-16 16:23:52 +053040 args:
41 - --container-name
42 - "sdc-wfd-be"
43 env:
44 - name: NAMESPACE
45 valueFrom:
46 fieldRef:
47 apiVersion: v1
48 fieldPath: metadata.namespace
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020049 image: "{{ include "common.repository" . }}/{{ .Values.global.readinessImage }}"
priyanshu3af9db62018-08-16 16:23:52 +053050 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
ChrisC742a7b22020-09-04 11:29:57 +020051 {{- if .Values.global.aafEnabled }}
52 - name: {{ include "common.fullname" . }}-move-cert
53 command:
54 - /bin/sh
55 args:
56 - -c
57 - |
58 cp {{ .Values.certInitializer.credsPath }}/{{ .Values.certInitializer.keystoreFile }} /sdc-certs/{{ .Values.certInitializer.keystoreFile }}
59 cp {{ .Values.certInitializer.credsPath }}/{{ .Values.certInitializer.truststoreFile }} /sdc-certs/{{ .Values.certInitializer.truststoreFile }}
60 cp {{ .Values.certInitializer.credsPath }}/mycreds.prop /sdc-certs/mycreds.prop
61 image: "{{ .Values.global.busyboxRepository }}/{{ .Values.global.busyboxImage }}"
62 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
63 volumeMounts: {{ include "common.certInitializer.volumeMount" . | nindent 10 }}
64 - name: sdc-certs
65 mountPath: /sdc-certs
66 {{- end }}
priyanshu3af9db62018-08-16 16:23:52 +053067 containers:
68 - name: {{ include "common.name" . }}
69 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
70 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
ChrisC742a7b22020-09-04 11:29:57 +020071 {{- if .Values.global.aafEnabled }}
72 command:
73 - sh
74 args:
75 - "-c"
76 - |
77 export $(grep '^c' /sdc-certs/mycreds.prop | xargs -0)
78 export KEYSTORE_PASS=$cadi_keystore_password_p12
79 export TRUSTSTORE_PASS=$cadi_truststore_password
80 export KEYSTORE_PATH=/etc/{{ .Values.certInitializer.keystoreFile }}
81 export TRUSTSTORE_PATH=/etc/{{ .Values.certInitializer.truststoreFile }}
82 ./startup.sh
83 {{- end }}
priyanshu3af9db62018-08-16 16:23:52 +053084 ports:
IlanaPc80bff92019-11-18 21:10:08 +020085 - containerPort: {{ template "wfd-fe.internalPort" . }}
priyanshu3af9db62018-08-16 16:23:52 +053086 {{ if .Values.liveness.enabled }}
87 livenessProbe:
88 tcpSocket:
IlanaPc80bff92019-11-18 21:10:08 +020089 port: {{ template "wfd-fe.internalPort" . }}
priyanshu3af9db62018-08-16 16:23:52 +053090 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
91 periodSeconds: {{ .Values.liveness.periodSeconds }}
92 {{ end }}
93 readinessProbe:
94 tcpSocket:
IlanaPc80bff92019-11-18 21:10:08 +020095 port: {{ template "wfd-fe.internalPort" . }}
priyanshu3af9db62018-08-16 16:23:52 +053096 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
97 periodSeconds: {{ .Values.readiness.periodSeconds }}
98 env:
99 - name: ENVNAME
ChrisC742a7b22020-09-04 11:29:57 +0200100 value: {{ .Values.env.name }}
priyanshu3af9db62018-08-16 16:23:52 +0530101 - name: JAVA_OPTIONS
102 value: {{ .Values.config.javaOptions }}
103 - name: BACKEND
104 value: {{ .Values.config.backendServerURL }}
dfx1971b2734ed2019-05-07 10:35:58 +0300105 - name: IS_HTTPS
106 value: "{{ .Values.config.isHttpsEnabled}}"
107 {{ if and .Values.config.isHttpsEnabled (eq .Values.security.isDefaultStore false) }}
IlanaPc80bff92019-11-18 21:10:08 +0200108 - name: TRUST_ALL
109 value: "{{ .Values.config.isTrustAll}}"
dfx1971b2734ed2019-05-07 10:35:58 +0300110 {{ end }}
priyanshu3af9db62018-08-16 16:23:52 +0530111 volumeMounts:
112 - name: {{ include "common.fullname" . }}-localtime
113 mountPath: /etc/localtime
114 readOnly: true
ChrisC742a7b22020-09-04 11:29:57 +0200115 {{- if .Values.global.aafEnabled }}
116 - name: sdc-certs
Jakub Latusekd06aa1f2020-09-24 18:48:18 +0200117 mountPath: /sdc-certs/mycreds.prop
118 subPath: mycreds.prop
ChrisC742a7b22020-09-04 11:29:57 +0200119 - name: sdc-certs
120 mountPath: /var/lib/jetty/etc/{{ .Values.certInitializer.keystoreFile }}
121 subPath: {{ .Values.certInitializer.keystoreFile }}
122 - name: sdc-certs
123 mountPath: /var/lib/jetty/etc/{{ .Values.certInitializer.truststoreFile }}
124 subPath: {{ .Values.certInitializer.truststoreFile }}
125 {{ end }}
priyanshu3af9db62018-08-16 16:23:52 +0530126 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +0000127{{ include "common.resources" . | indent 12 }}
priyanshu3af9db62018-08-16 16:23:52 +0530128 {{- if .Values.nodeSelector }}
129 nodeSelector:
130{{ toYaml .Values.nodeSelector | indent 10 }}
131 {{- end -}}
132 {{- if .Values.affinity }}
133 affinity:
134{{ toYaml .Values.affinity | indent 10 }}
135 {{- end }}
priyanshu3af9db62018-08-16 16:23:52 +0530136 # side car containers
137 - name: {{ include "common.name" . }}-filebeat-onap
138 image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
139 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
140 volumeMounts:
141 - name: {{ include "common.fullname" . }}-filebeat-conf
142 mountPath: /usr/share/filebeat/filebeat.yml
143 subPath: filebeat.yml
144 - name: {{ include "common.fullname" . }}-logs
145 mountPath: /var/log/onap
146 - name: {{ include "common.fullname" . }}-data-filebeat
147 mountPath: /usr/share/filebeat/data
ChrisC742a7b22020-09-04 11:29:57 +0200148 volumes: {{ include "common.certInitializer.volumes" . | nindent 8 }}
priyanshu3af9db62018-08-16 16:23:52 +0530149 - name: {{ include "common.fullname" . }}-localtime
150 hostPath:
151 path: /etc/localtime
ChrisC742a7b22020-09-04 11:29:57 +0200152 {{- if .Values.global.aafEnabled }}
153 - name: sdc-certs
154 emptyDir:
155 medium: "Memory"
156 {{- end }}
priyanshu3af9db62018-08-16 16:23:52 +0530157 - name: {{ include "common.fullname" . }}-filebeat-conf
158 configMap:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100159 name: {{ include "common.release" . }}-sdc-filebeat-configmap
priyanshu3af9db62018-08-16 16:23:52 +0530160 - name: {{ include "common.fullname" . }}-data-filebeat
161 emptyDir: {}
162 - name: {{ include "common.fullname" . }}-logs
163 emptyDir: {}
164 imagePullSecrets:
kwasiel59cc6a42020-07-23 10:02:49 +0000165 - name: "{{ include "common.namespace" . }}-docker-registry-key"