blob: ccfbc7064b20e7a869b996fcbe6f200ba5f40100 [file] [log] [blame]
Mandeep Khindab1f9efe2018-03-28 19:01:55 +00001# Copyright © 2017 Amdocs, Bell Canada
toshrajbhardwajf4fc1c62018-08-06 07:35:14 +00002# Modifications Copyright © 2018 AT&T, ZTE
Mandeep Khindab1f9efe2018-03-28 19:01:55 +00003#
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
kwasiel59cc6a42020-07-23 10:02:49 +000016apiVersion: apps/v1
Mandeep Khindaa1047f42018-03-22 02:12:15 +000017kind: Deployment
18metadata:
19 name: {{ include "common.fullname" . }}
20 namespace: {{ include "common.namespace" . }}
21 labels:
22 app: {{ include "common.name" . }}
23 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010024 release: {{ include "common.release" . }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +000025 heritage: {{ .Release.Service }}
26spec:
kwasiel59cc6a42020-07-23 10:02:49 +000027 selector:
28 matchLabels:
29 app: {{ include "common.name" . }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +000030 replicas: {{ .Values.replicaCount }}
31 template:
32 metadata:
33 labels:
34 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010035 release: {{ include "common.release" . }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +000036 spec:
37 initContainers:
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000038 - name: {{ include "common.name" . }}-job-completion
39 image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
40 imagePullPolicy: "{{ .Values.global.pullPolicy | default .Values.pullPolicy }}"
41 command:
42 - /root/job_complete.py
43 args:
44 - --job-name
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010045 - {{ include "common.release" . }}-sdc-be-config-backend
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000046 env:
47 - name: NAMESPACE
48 valueFrom:
49 fieldRef:
50 apiVersion: v1
51 fieldPath: metadata.namespace
k.kedron2774ab12020-03-26 11:13:46 +010052 - name: {{ include "common.name" . }}-update-config
53 image: "{{ .Values.global.envsubstImage }}"
54 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
55 command:
56 - sh
57 args:
58 - -c
59 - "cd /config-input && for PFILE in `find . -not -type d | grep -v -F ..`; do envsubst <${PFILE} >/config-output/${PFILE}; chmod 0755 /config-output/${PFILE}; done"
60 env:
61 - name: KEYSTORE_PASS
62 valueFrom:
63 secretKeyRef:
64 name: {{ include "common.release" . }}-sdc-cs-secrets
65 key: keystore_password
66 - name: TRUSTSTORE_PASS
67 valueFrom:
68 secretKeyRef:
69 name: {{ include "common.release" . }}-sdc-cs-secrets
70 key: truststore_password
71 volumeMounts:
72 - name: {{ include "common.fullname" . }}-environments
73 mountPath: /config-input/
74 - name: sdc-environments-output
75 mountPath: /config-output/
Mandeep Khindaa1047f42018-03-22 02:12:15 +000076 containers:
77 - name: {{ include "common.name" . }}
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000078 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
Mandeep Khindaa1047f42018-03-22 02:12:15 +000079 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
80 ports:
81 - containerPort: {{ .Values.service.internalPort }}
82 - containerPort: {{ .Values.service.internalPort2 }}
Mandeep Khinda403c1c12018-04-19 23:15:43 +000083 {{ if eq .Values.liveness.enabled true }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +000084 livenessProbe:
85 tcpSocket:
k.kedronc784bbd2019-09-05 18:28:16 +020086 port: {{ .Values.service.internalPort2 }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +000087 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
88 periodSeconds: {{ .Values.liveness.periodSeconds }}
Brian Freeman6142d942019-10-02 09:50:19 -050089 timeoutSeconds: {{ .Values.liveness.timeoutSeconds }}
Mandeep Khinda403c1c12018-04-19 23:15:43 +000090 {{ end }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +000091 readinessProbe:
92 tcpSocket:
k.kedronc784bbd2019-09-05 18:28:16 +020093 port: {{ .Values.service.internalPort2 }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +000094 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
95 periodSeconds: {{ .Values.readiness.periodSeconds }}
Brian Freeman6142d942019-10-02 09:50:19 -050096 timeoutSeconds: {{ .Values.liveness.timeoutSeconds }}
Mukula93baa82018-09-19 15:56:58 +000097 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +000098{{ include "common.resources" . | indent 12 }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +000099 env:
100 - name: ENVNAME
101 value: {{ .Values.global.env.name }}
102 - name: HOST_IP
103 valueFrom:
104 fieldRef:
105 fieldPath: status.podIP
106 - name: JAVA_OPTIONS
Mandeep Khinda403c1c12018-04-19 23:15:43 +0000107 value: {{ .Values.config.javaOptions }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000108 volumeMounts:
k.kedron2774ab12020-03-26 11:13:46 +0100109 - name: sdc-environments-output
MichaelMorrisb137f7e2020-03-15 17:44:48 +0000110 mountPath: /var/lib/jetty/chef-solo/environments/
k.kedron2774ab12020-03-26 11:13:46 +0100111 - name: sdc-cert
112 mountPath: /var/lib/jetty/chef-solo/cookbooks/sdc-catalog-fe/files/default/org.onap.sdc.p12
113 subPath: org.onap.sdc.p12
114 - name: sdc-cert
115 mountPath: /var/lib/jetty/chef-solo/cookbooks/sdc-catalog-fe/files/default/org.onap.sdc.trust.jks
116 subPath: org.onap.sdc.trust.jks
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000117 - name: {{ include "common.fullname" . }}-localtime
118 mountPath: /etc/localtime
119 readOnly: true
120 - name: {{ include "common.fullname" . }}-logs
121 mountPath: /var/log/onap
shrikantawachar0c84bc32019-01-16 13:12:21 +0530122 - name: {{ include "common.fullname" . }}-configs
123 mountPath: /var/lib/jetty/config/catalog-fe/plugins-configuration.yaml
124 subPath: plugins-configuration.yaml
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000125 - name: {{ include "common.fullname" . }}-logback
126 mountPath: /tmp/logback.xml
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +0000127 subPath: logback.xml
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000128 lifecycle:
129 postStart:
130 exec:
131 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"]
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000132 # side car containers
133 - name: {{ include "common.name" . }}-filebeat-onap
134 image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
135 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
136 volumeMounts:
137 - name: {{ include "common.fullname" . }}-filebeat-conf
138 mountPath: /usr/share/filebeat/filebeat.yml
139 subPath: filebeat.yml
140 - name: {{ include "common.fullname" . }}-logs
141 mountPath: /var/log/onap
142 - name: {{ include "common.fullname" . }}-data-filebeat
143 mountPath: /usr/share/filebeat/data
144 volumes:
145 - name: {{ include "common.fullname" . }}-localtime
146 hostPath:
147 path: /etc/localtime
k.kedron2774ab12020-03-26 11:13:46 +0100148 - name: sdc-cert
149 secret:
150 secretName: sdc-cert
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000151 - name: {{ include "common.fullname" . }}-filebeat-conf
152 configMap:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100153 name: {{ include "common.release" . }}-sdc-filebeat-configmap
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000154 - name: {{ include "common.fullname" . }}-data-filebeat
155 emptyDir: {}
shrikantawachar0c84bc32019-01-16 13:12:21 +0530156 - name: {{ include "common.fullname" . }}-configs
157 configMap:
158 name : {{ include "common.fullname" . }}-plugins-configmap
159 defaultMode: 0777
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000160 - name: {{ include "common.fullname" . }}-logback
161 configMap:
162 name : {{ include "common.fullname" . }}-logging-configmap
163 - name: {{ include "common.fullname" . }}-environments
164 configMap:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100165 name: {{ include "common.release" . }}-sdc-environments-configmap
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000166 defaultMode: 0755
k.kedron2774ab12020-03-26 11:13:46 +0100167 - name: sdc-environments-output
168 emptyDir: { medium: "Memory" }
169 - name: {{ include "common.fullname" . }}-logs
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000170 emptyDir: {}
171 imagePullSecrets:
toshrajbhardwajf4fc1c62018-08-06 07:35:14 +0000172 - name: "{{ include "common.namespace" . }}-docker-registry-key"