blob: 8e19489f9a55a5f6900510073e42384921c2d361 [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
Mandeep Khindaa1047f42018-03-22 02:12:15 +000049 containers:
50 - name: {{ include "common.name" . }}
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000051 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
Mandeep Khindaa1047f42018-03-22 02:12:15 +000052 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
53 ports:
54 - containerPort: {{ .Values.service.internalPort }}
55 - containerPort: {{ .Values.service.internalPort2 }}
Mandeep Khinda403c1c12018-04-19 23:15:43 +000056 {{ if eq .Values.liveness.enabled true }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +000057 livenessProbe:
58 tcpSocket:
k.kedronc784bbd2019-09-05 18:28:16 +020059 port: {{ .Values.service.internalPort2 }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +000060 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
61 periodSeconds: {{ .Values.liveness.periodSeconds }}
Brian Freeman6142d942019-10-02 09:50:19 -050062 timeoutSeconds: {{ .Values.liveness.timeoutSeconds }}
Mandeep Khinda403c1c12018-04-19 23:15:43 +000063 {{ end }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +000064 readinessProbe:
65 tcpSocket:
k.kedronc784bbd2019-09-05 18:28:16 +020066 port: {{ .Values.service.internalPort2 }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +000067 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
68 periodSeconds: {{ .Values.readiness.periodSeconds }}
Brian Freeman6142d942019-10-02 09:50:19 -050069 timeoutSeconds: {{ .Values.liveness.timeoutSeconds }}
Mukula93baa82018-09-19 15:56:58 +000070 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +000071{{ include "common.resources" . | indent 12 }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +000072 env:
73 - name: ENVNAME
74 value: {{ .Values.global.env.name }}
75 - name: HOST_IP
76 valueFrom:
77 fieldRef:
78 fieldPath: status.podIP
79 - name: JAVA_OPTIONS
Mandeep Khinda403c1c12018-04-19 23:15:43 +000080 value: {{ .Values.config.javaOptions }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +000081 volumeMounts:
82 - name: {{ include "common.fullname" . }}-environments
MichaelMorrisb137f7e2020-03-15 17:44:48 +000083 mountPath: /var/lib/jetty/chef-solo/environments/
Mandeep Khindaa1047f42018-03-22 02:12:15 +000084 - name: {{ include "common.fullname" . }}-localtime
85 mountPath: /etc/localtime
86 readOnly: true
87 - name: {{ include "common.fullname" . }}-logs
88 mountPath: /var/log/onap
shrikantawachar0c84bc32019-01-16 13:12:21 +053089 - name: {{ include "common.fullname" . }}-configs
90 mountPath: /var/lib/jetty/config/catalog-fe/plugins-configuration.yaml
91 subPath: plugins-configuration.yaml
Mandeep Khindaa1047f42018-03-22 02:12:15 +000092 - name: {{ include "common.fullname" . }}-logback
93 mountPath: /tmp/logback.xml
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000094 subPath: logback.xml
Mandeep Khindaa1047f42018-03-22 02:12:15 +000095 lifecycle:
96 postStart:
97 exec:
98 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 +000099 # side car containers
100 - name: {{ include "common.name" . }}-filebeat-onap
101 image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
102 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
103 volumeMounts:
104 - name: {{ include "common.fullname" . }}-filebeat-conf
105 mountPath: /usr/share/filebeat/filebeat.yml
106 subPath: filebeat.yml
107 - name: {{ include "common.fullname" . }}-logs
108 mountPath: /var/log/onap
109 - name: {{ include "common.fullname" . }}-data-filebeat
110 mountPath: /usr/share/filebeat/data
111 volumes:
112 - name: {{ include "common.fullname" . }}-localtime
113 hostPath:
114 path: /etc/localtime
115 - name: {{ include "common.fullname" . }}-filebeat-conf
116 configMap:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100117 name: {{ include "common.release" . }}-sdc-filebeat-configmap
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000118 - name: {{ include "common.fullname" . }}-data-filebeat
119 emptyDir: {}
shrikantawachar0c84bc32019-01-16 13:12:21 +0530120 - name: {{ include "common.fullname" . }}-configs
121 configMap:
122 name : {{ include "common.fullname" . }}-plugins-configmap
123 defaultMode: 0777
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000124 - name: {{ include "common.fullname" . }}-logback
125 configMap:
126 name : {{ include "common.fullname" . }}-logging-configmap
127 - name: {{ include "common.fullname" . }}-environments
128 configMap:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100129 name: {{ include "common.release" . }}-sdc-environments-configmap
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000130 defaultMode: 0755
131 - name: {{ include "common.fullname" . }}-logs
132 emptyDir: {}
133 imagePullSecrets:
toshrajbhardwajf4fc1c62018-08-06 07:35:14 +0000134 - name: "{{ include "common.namespace" . }}-docker-registry-key"