blob: 7a11ef927e3016215de6e3152abaa2abb4f1eeba [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
Mandeep Khindaa1047f42018-03-22 02:12:15 +000016apiVersion: extensions/v1beta1
17kind: 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:
27 replicas: {{ .Values.replicaCount }}
28 template:
29 metadata:
30 labels:
31 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010032 release: {{ include "common.release" . }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +000033 spec:
34 initContainers:
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000035 - name: {{ include "common.name" . }}-job-completion
36 image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
37 imagePullPolicy: "{{ .Values.global.pullPolicy | default .Values.pullPolicy }}"
38 command:
39 - /root/job_complete.py
40 args:
41 - --job-name
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010042 - {{ include "common.release" . }}-sdc-be-config-backend
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000043 env:
44 - name: NAMESPACE
45 valueFrom:
46 fieldRef:
47 apiVersion: v1
48 fieldPath: metadata.namespace
k.kedron2774ab12020-03-26 11:13:46 +010049 - name: {{ include "common.name" . }}-update-config
50 image: "{{ .Values.global.envsubstImage }}"
51 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
52 command:
53 - sh
54 args:
55 - -c
56 - "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"
57 env:
58 - name: KEYSTORE_PASS
59 valueFrom:
60 secretKeyRef:
61 name: {{ include "common.release" . }}-sdc-cs-secrets
62 key: keystore_password
63 - name: TRUSTSTORE_PASS
64 valueFrom:
65 secretKeyRef:
66 name: {{ include "common.release" . }}-sdc-cs-secrets
67 key: truststore_password
68 volumeMounts:
69 - name: {{ include "common.fullname" . }}-environments
70 mountPath: /config-input/
71 - name: sdc-environments-output
72 mountPath: /config-output/
Mandeep Khindaa1047f42018-03-22 02:12:15 +000073 containers:
74 - name: {{ include "common.name" . }}
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000075 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
Mandeep Khindaa1047f42018-03-22 02:12:15 +000076 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
77 ports:
78 - containerPort: {{ .Values.service.internalPort }}
79 - containerPort: {{ .Values.service.internalPort2 }}
Mandeep Khinda403c1c12018-04-19 23:15:43 +000080 {{ if eq .Values.liveness.enabled true }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +000081 livenessProbe:
82 tcpSocket:
k.kedronc784bbd2019-09-05 18:28:16 +020083 port: {{ .Values.service.internalPort2 }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +000084 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
85 periodSeconds: {{ .Values.liveness.periodSeconds }}
Brian Freeman6142d942019-10-02 09:50:19 -050086 timeoutSeconds: {{ .Values.liveness.timeoutSeconds }}
Mandeep Khinda403c1c12018-04-19 23:15:43 +000087 {{ end }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +000088 readinessProbe:
89 tcpSocket:
k.kedronc784bbd2019-09-05 18:28:16 +020090 port: {{ .Values.service.internalPort2 }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +000091 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
92 periodSeconds: {{ .Values.readiness.periodSeconds }}
Brian Freeman6142d942019-10-02 09:50:19 -050093 timeoutSeconds: {{ .Values.liveness.timeoutSeconds }}
Mukula93baa82018-09-19 15:56:58 +000094 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +000095{{ include "common.resources" . | indent 12 }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +000096 env:
97 - name: ENVNAME
98 value: {{ .Values.global.env.name }}
99 - name: HOST_IP
100 valueFrom:
101 fieldRef:
102 fieldPath: status.podIP
103 - name: JAVA_OPTIONS
Mandeep Khinda403c1c12018-04-19 23:15:43 +0000104 value: {{ .Values.config.javaOptions }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000105 volumeMounts:
k.kedron2774ab12020-03-26 11:13:46 +0100106 - name: sdc-environments-output
MichaelMorrisb137f7e2020-03-15 17:44:48 +0000107 mountPath: /var/lib/jetty/chef-solo/environments/
k.kedron2774ab12020-03-26 11:13:46 +0100108 - name: sdc-cert
109 mountPath: /var/lib/jetty/chef-solo/cookbooks/sdc-catalog-fe/files/default/org.onap.sdc.p12
110 subPath: org.onap.sdc.p12
111 - name: sdc-cert
112 mountPath: /var/lib/jetty/chef-solo/cookbooks/sdc-catalog-fe/files/default/org.onap.sdc.trust.jks
113 subPath: org.onap.sdc.trust.jks
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000114 - name: {{ include "common.fullname" . }}-localtime
115 mountPath: /etc/localtime
116 readOnly: true
117 - name: {{ include "common.fullname" . }}-logs
118 mountPath: /var/log/onap
shrikantawachar0c84bc32019-01-16 13:12:21 +0530119 - name: {{ include "common.fullname" . }}-configs
120 mountPath: /var/lib/jetty/config/catalog-fe/plugins-configuration.yaml
121 subPath: plugins-configuration.yaml
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000122 - name: {{ include "common.fullname" . }}-logback
123 mountPath: /tmp/logback.xml
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +0000124 subPath: logback.xml
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000125 lifecycle:
126 postStart:
127 exec:
128 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 +0000129 # side car containers
130 - name: {{ include "common.name" . }}-filebeat-onap
131 image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
132 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
133 volumeMounts:
134 - name: {{ include "common.fullname" . }}-filebeat-conf
135 mountPath: /usr/share/filebeat/filebeat.yml
136 subPath: filebeat.yml
137 - name: {{ include "common.fullname" . }}-logs
138 mountPath: /var/log/onap
139 - name: {{ include "common.fullname" . }}-data-filebeat
140 mountPath: /usr/share/filebeat/data
141 volumes:
142 - name: {{ include "common.fullname" . }}-localtime
143 hostPath:
144 path: /etc/localtime
k.kedron2774ab12020-03-26 11:13:46 +0100145 - name: sdc-cert
146 secret:
147 secretName: sdc-cert
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000148 - name: {{ include "common.fullname" . }}-filebeat-conf
149 configMap:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100150 name: {{ include "common.release" . }}-sdc-filebeat-configmap
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000151 - name: {{ include "common.fullname" . }}-data-filebeat
152 emptyDir: {}
shrikantawachar0c84bc32019-01-16 13:12:21 +0530153 - name: {{ include "common.fullname" . }}-configs
154 configMap:
155 name : {{ include "common.fullname" . }}-plugins-configmap
156 defaultMode: 0777
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000157 - name: {{ include "common.fullname" . }}-logback
158 configMap:
159 name : {{ include "common.fullname" . }}-logging-configmap
160 - name: {{ include "common.fullname" . }}-environments
161 configMap:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100162 name: {{ include "common.release" . }}-sdc-environments-configmap
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000163 defaultMode: 0755
k.kedron2774ab12020-03-26 11:13:46 +0100164 - name: sdc-environments-output
165 emptyDir: { medium: "Memory" }
166 - name: {{ include "common.fullname" . }}-logs
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000167 emptyDir: {}
168 imagePullSecrets:
toshrajbhardwajf4fc1c62018-08-06 07:35:14 +0000169 - name: "{{ include "common.namespace" . }}-docker-registry-key"