blob: 180c427f1eb3de61da3d83de119b864b629df99f [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
15apiVersion: extensions/v1beta1
16kind: 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:
26 replicas: {{ .Values.replicaCount }}
27 template:
28 metadata:
29 labels:
30 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010031 release: {{ include "common.release" . }}
priyanshu3af9db62018-08-16 16:23:52 +053032 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:
IlanaPc80bff92019-11-18 21:10:08 +020053 - containerPort: {{ template "wfd-fe.internalPort" . }}
priyanshu3af9db62018-08-16 16:23:52 +053054 {{ if .Values.liveness.enabled }}
55 livenessProbe:
56 tcpSocket:
IlanaPc80bff92019-11-18 21:10:08 +020057 port: {{ template "wfd-fe.internalPort" . }}
priyanshu3af9db62018-08-16 16:23:52 +053058 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
59 periodSeconds: {{ .Values.liveness.periodSeconds }}
60 {{ end }}
61 readinessProbe:
62 tcpSocket:
IlanaPc80bff92019-11-18 21:10:08 +020063 port: {{ template "wfd-fe.internalPort" . }}
priyanshu3af9db62018-08-16 16:23:52 +053064 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 }}
dfx1971b2734ed2019-05-07 10:35:58 +030073 - name: IS_HTTPS
74 value: "{{ .Values.config.isHttpsEnabled}}"
75 {{ if and .Values.config.isHttpsEnabled (eq .Values.security.isDefaultStore false) }}
76 - name: KEYSTORE_PASS
IlanaPc80bff92019-11-18 21:10:08 +020077 valueFrom:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010078 secretKeyRef: {name: {{ include "common.release" . }}-sdc-cs-secrets, key: keystore_password}
dfx1971b2734ed2019-05-07 10:35:58 +030079 - name: TRUSTSTORE_PASS
IlanaPc80bff92019-11-18 21:10:08 +020080 valueFrom:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010081 secretKeyRef: {name: {{ include "common.release" . }}-sdc-cs-secrets, key: truststore_password}
dfx1971b2734ed2019-05-07 10:35:58 +030082 - name: TRUSTSTORE_PATH
83 value: "{{ .Values.security.storePath }}/{{ .Values.security.truststoreFilename }}"
84 - name: KEYSTORE_PATH
85 value: "{{ .Values.security.storePath }}/{{ .Values.security.keystoreFilename }}"
IlanaPc80bff92019-11-18 21:10:08 +020086 - name: TRUST_ALL
87 value: "{{ .Values.config.isTrustAll}}"
dfx1971b2734ed2019-05-07 10:35:58 +030088 {{ end }}
priyanshu3af9db62018-08-16 16:23:52 +053089 volumeMounts:
90 - name: {{ include "common.fullname" . }}-localtime
91 mountPath: /etc/localtime
92 readOnly: true
k.kedron2774ab12020-03-26 11:13:46 +010093 - name: sdc-cert
94 mountPath: /var/lib/jetty/etc/org.onap.sdc.p12
95 subPath: org.onap.sdc.p12
96 - name: sdc-cert
97 mountPath: /var/lib/jetty/etc/org.onap.sdc.trust.jks
98 subPath: org.onap.sdc.trust.jks
priyanshu3af9db62018-08-16 16:23:52 +053099 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +0000100{{ include "common.resources" . | indent 12 }}
priyanshu3af9db62018-08-16 16:23:52 +0530101 {{- if .Values.nodeSelector }}
102 nodeSelector:
103{{ toYaml .Values.nodeSelector | indent 10 }}
104 {{- end -}}
105 {{- if .Values.affinity }}
106 affinity:
107{{ toYaml .Values.affinity | indent 10 }}
108 {{- end }}
priyanshu3af9db62018-08-16 16:23:52 +0530109 # side car containers
110 - name: {{ include "common.name" . }}-filebeat-onap
111 image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
112 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
113 volumeMounts:
114 - name: {{ include "common.fullname" . }}-filebeat-conf
115 mountPath: /usr/share/filebeat/filebeat.yml
116 subPath: filebeat.yml
117 - name: {{ include "common.fullname" . }}-logs
118 mountPath: /var/log/onap
119 - name: {{ include "common.fullname" . }}-data-filebeat
120 mountPath: /usr/share/filebeat/data
121 volumes:
122 - name: {{ include "common.fullname" . }}-localtime
123 hostPath:
124 path: /etc/localtime
k.kedron2774ab12020-03-26 11:13:46 +0100125 - name: sdc-cert
126 secret:
127 secretName: sdc-cert
priyanshu3af9db62018-08-16 16:23:52 +0530128 - name: {{ include "common.fullname" . }}-filebeat-conf
129 configMap:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100130 name: {{ include "common.release" . }}-sdc-filebeat-configmap
priyanshu3af9db62018-08-16 16:23:52 +0530131 - name: {{ include "common.fullname" . }}-data-filebeat
132 emptyDir: {}
133 - name: {{ include "common.fullname" . }}-logs
134 emptyDir: {}
135 imagePullSecrets:
136 - name: "{{ include "common.namespace" . }}-docker-registry-key"