blob: 7a8cf8fb34d322c8cad16535b980e8f6c8d366db [file] [log] [blame]
Jakub Latusekd8eaff62020-10-21 13:36:29 +02001{{/*
priyanshu3af9db62018-08-16 16:23:52 +05302# Copyright © 2018 Amdocs, Bell Canada
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.
Jakub Latusekd8eaff62020-10-21 13:36:29 +020015*/}}
priyanshu3af9db62018-08-16 16:23:52 +053016
kwasiel59cc6a42020-07-23 10:02:49 +000017apiVersion: apps/v1
priyanshu3af9db62018-08-16 16:23:52 +053018kind: Deployment
19metadata:
20 name: {{ include "common.fullname" . }}
21 namespace: {{ include "common.namespace" . }}
22 labels:
23 app: {{ include "common.name" . }}
24 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010025 release: {{ include "common.release" . }}
priyanshu3af9db62018-08-16 16:23:52 +053026 heritage: {{ .Release.Service }}
27spec:
kwasiel59cc6a42020-07-23 10:02:49 +000028 selector:
29 matchLabels:
30 app: {{ include "common.name" . }}
priyanshu3af9db62018-08-16 16:23:52 +053031 replicas: {{ .Values.replicaCount }}
32 template:
33 metadata:
34 labels:
35 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010036 release: {{ include "common.release" . }}
priyanshu3af9db62018-08-16 16:23:52 +053037 spec:
ChrisC742a7b22020-09-04 11:29:57 +020038 initContainers: {{ include "common.certInitializer.initContainer" . | nindent 6 }}
priyanshu3af9db62018-08-16 16:23:52 +053039 - name: {{ include "common.name" . }}-readiness
40 command:
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020041 - /app/ready.py
priyanshu3af9db62018-08-16 16:23:52 +053042 args:
43 - --container-name
44 - "sdc-wfd-be"
45 env:
46 - name: NAMESPACE
47 valueFrom:
48 fieldRef:
49 apiVersion: v1
50 fieldPath: metadata.namespace
Sylvain Desbureaux0a1eaf32020-11-19 17:56:08 +010051 image: {{ include "repositoryGenerator.image.readiness" . }}
priyanshu3af9db62018-08-16 16:23:52 +053052 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
ChrisC32172342020-10-02 16:39:13 +020053 resources:
54 limits:
55 cpu: 100m
56 memory: 100Mi
57 requests:
58 cpu: 3m
59 memory: 20Mi
ChrisC742a7b22020-09-04 11:29:57 +020060 {{- if .Values.global.aafEnabled }}
61 - name: {{ include "common.fullname" . }}-move-cert
62 command:
63 - /bin/sh
64 args:
65 - -c
66 - |
67 cp {{ .Values.certInitializer.credsPath }}/{{ .Values.certInitializer.keystoreFile }} /sdc-certs/{{ .Values.certInitializer.keystoreFile }}
68 cp {{ .Values.certInitializer.credsPath }}/{{ .Values.certInitializer.truststoreFile }} /sdc-certs/{{ .Values.certInitializer.truststoreFile }}
69 cp {{ .Values.certInitializer.credsPath }}/mycreds.prop /sdc-certs/mycreds.prop
Sylvain Desbureaux0a1eaf32020-11-19 17:56:08 +010070 image: {{ include "repositoryGenerator.image.busybox" . }}
ChrisC742a7b22020-09-04 11:29:57 +020071 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
72 volumeMounts: {{ include "common.certInitializer.volumeMount" . | nindent 10 }}
73 - name: sdc-certs
74 mountPath: /sdc-certs
ChrisC32172342020-10-02 16:39:13 +020075 resources:
76 limits:
77 cpu: 100m
78 memory: 100Mi
79 requests:
80 cpu: 3m
81 memory: 20Mi
ChrisC742a7b22020-09-04 11:29:57 +020082 {{- end }}
priyanshu3af9db62018-08-16 16:23:52 +053083 containers:
84 - name: {{ include "common.name" . }}
Sylvain Desbureaux0a1eaf32020-11-19 17:56:08 +010085 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
priyanshu3af9db62018-08-16 16:23:52 +053086 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
ChrisC742a7b22020-09-04 11:29:57 +020087 {{- if .Values.global.aafEnabled }}
88 command:
89 - sh
90 args:
91 - "-c"
92 - |
93 export $(grep '^c' /sdc-certs/mycreds.prop | xargs -0)
94 export KEYSTORE_PASS=$cadi_keystore_password_p12
95 export TRUSTSTORE_PASS=$cadi_truststore_password
96 export KEYSTORE_PATH=/etc/{{ .Values.certInitializer.keystoreFile }}
97 export TRUSTSTORE_PATH=/etc/{{ .Values.certInitializer.truststoreFile }}
98 ./startup.sh
99 {{- end }}
priyanshu3af9db62018-08-16 16:23:52 +0530100 ports:
IlanaPc80bff92019-11-18 21:10:08 +0200101 - containerPort: {{ template "wfd-fe.internalPort" . }}
priyanshu3af9db62018-08-16 16:23:52 +0530102 {{ if .Values.liveness.enabled }}
103 livenessProbe:
104 tcpSocket:
IlanaPc80bff92019-11-18 21:10:08 +0200105 port: {{ template "wfd-fe.internalPort" . }}
priyanshu3af9db62018-08-16 16:23:52 +0530106 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
107 periodSeconds: {{ .Values.liveness.periodSeconds }}
108 {{ end }}
109 readinessProbe:
110 tcpSocket:
IlanaPc80bff92019-11-18 21:10:08 +0200111 port: {{ template "wfd-fe.internalPort" . }}
priyanshu3af9db62018-08-16 16:23:52 +0530112 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
113 periodSeconds: {{ .Values.readiness.periodSeconds }}
114 env:
115 - name: ENVNAME
ChrisC742a7b22020-09-04 11:29:57 +0200116 value: {{ .Values.env.name }}
priyanshu3af9db62018-08-16 16:23:52 +0530117 - name: JAVA_OPTIONS
118 value: {{ .Values.config.javaOptions }}
119 - name: BACKEND
120 value: {{ .Values.config.backendServerURL }}
dfx1971b2734ed2019-05-07 10:35:58 +0300121 - name: IS_HTTPS
122 value: "{{ .Values.config.isHttpsEnabled}}"
123 {{ if and .Values.config.isHttpsEnabled (eq .Values.security.isDefaultStore false) }}
IlanaPc80bff92019-11-18 21:10:08 +0200124 - name: TRUST_ALL
125 value: "{{ .Values.config.isTrustAll}}"
dfx1971b2734ed2019-05-07 10:35:58 +0300126 {{ end }}
priyanshu3af9db62018-08-16 16:23:52 +0530127 volumeMounts:
128 - name: {{ include "common.fullname" . }}-localtime
129 mountPath: /etc/localtime
130 readOnly: true
ChrisC742a7b22020-09-04 11:29:57 +0200131 {{- if .Values.global.aafEnabled }}
132 - name: sdc-certs
Jakub Latusekd06aa1f2020-09-24 18:48:18 +0200133 mountPath: /sdc-certs/mycreds.prop
134 subPath: mycreds.prop
ChrisC742a7b22020-09-04 11:29:57 +0200135 - name: sdc-certs
136 mountPath: /var/lib/jetty/etc/{{ .Values.certInitializer.keystoreFile }}
137 subPath: {{ .Values.certInitializer.keystoreFile }}
138 - name: sdc-certs
139 mountPath: /var/lib/jetty/etc/{{ .Values.certInitializer.truststoreFile }}
140 subPath: {{ .Values.certInitializer.truststoreFile }}
141 {{ end }}
ChrisC32172342020-10-02 16:39:13 +0200142 resources: {{ include "common.resources" . | nindent 12 }}
priyanshu3af9db62018-08-16 16:23:52 +0530143 {{- if .Values.nodeSelector }}
144 nodeSelector:
145{{ toYaml .Values.nodeSelector | indent 10 }}
146 {{- end -}}
147 {{- if .Values.affinity }}
148 affinity:
149{{ toYaml .Values.affinity | indent 10 }}
150 {{- end }}
priyanshu3af9db62018-08-16 16:23:52 +0530151 # side car containers
152 - name: {{ include "common.name" . }}-filebeat-onap
Sylvain Desbureaux0a1eaf32020-11-19 17:56:08 +0100153 image: {{ include "repositoryGenerator.image.logging" . }}
priyanshu3af9db62018-08-16 16:23:52 +0530154 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
155 volumeMounts:
156 - name: {{ include "common.fullname" . }}-filebeat-conf
157 mountPath: /usr/share/filebeat/filebeat.yml
158 subPath: filebeat.yml
159 - name: {{ include "common.fullname" . }}-logs
160 mountPath: /var/log/onap
161 - name: {{ include "common.fullname" . }}-data-filebeat
162 mountPath: /usr/share/filebeat/data
ChrisC32172342020-10-02 16:39:13 +0200163 resources:
164 limits:
165 cpu: 100m
166 memory: 100Mi
167 requests:
168 cpu: 3m
169 memory: 20Mi
ChrisC742a7b22020-09-04 11:29:57 +0200170 volumes: {{ include "common.certInitializer.volumes" . | nindent 8 }}
priyanshu3af9db62018-08-16 16:23:52 +0530171 - name: {{ include "common.fullname" . }}-localtime
172 hostPath:
173 path: /etc/localtime
ChrisC742a7b22020-09-04 11:29:57 +0200174 {{- if .Values.global.aafEnabled }}
175 - name: sdc-certs
176 emptyDir:
177 medium: "Memory"
178 {{- end }}
priyanshu3af9db62018-08-16 16:23:52 +0530179 - name: {{ include "common.fullname" . }}-filebeat-conf
180 configMap:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100181 name: {{ include "common.release" . }}-sdc-filebeat-configmap
priyanshu3af9db62018-08-16 16:23:52 +0530182 - name: {{ include "common.fullname" . }}-data-filebeat
183 emptyDir: {}
184 - name: {{ include "common.fullname" . }}-logs
185 emptyDir: {}
186 imagePullSecrets:
kwasiel59cc6a42020-07-23 10:02:49 +0000187 - name: "{{ include "common.namespace" . }}-docker-registry-key"