blob: f8fb2f61e248c4a6ae1bc019bf725374790cad8f [file] [log] [blame]
Areli, Fuss (af732p)307fdc72018-05-29 14:40:03 +03001# Copyright © 2018 Amdocs, AT&T, 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" . }}
Areli, Fuss (af732p)307fdc72018-05-29 14:40:03 +030024 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" . }}
Areli, Fuss (af732p)307fdc72018-05-29 14:40:03 +030032 spec:
33 initContainers:
34 - name: {{ include "common.name" . }}-readiness
35 command:
36 - /root/ready.py
37 args:
38 - --container-name
39 - "sdc-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 - name: {{ include "common.name" . }}-job-completion
49 image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
50 imagePullPolicy: "{{ .Values.global.pullPolicy | default .Values.pullPolicy }}"
51 command:
52 - /root/job_complete.py
53 args:
54 - --job-name
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010055 - {{ include "common.release" . }}-sdc-be-config-backend
Areli, Fuss (af732p)307fdc72018-05-29 14:40:03 +030056 env:
57 - name: NAMESPACE
58 valueFrom:
59 fieldRef:
60 apiVersion: v1
61 fieldPath: metadata.namespace
62
63 containers:
64 - name: {{ include "common.name" . }}
65 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
66 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
67 ports:
68 - containerPort: {{ .Values.service.internalPort }}
69 - containerPort: {{ .Values.service.internalPort2 }}
70 {{ if eq .Values.liveness.enabled true }}
71 livenessProbe:
72 tcpSocket:
k.kedronc784bbd2019-09-05 18:28:16 +020073 port: {{ .Values.service.internalPort2 }}
Areli, Fuss (af732p)307fdc72018-05-29 14:40:03 +030074 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
75 periodSeconds: {{ .Values.liveness.periodSeconds }}
76 {{ end }}
77 readinessProbe:
78 httpGet:
79 path: /dcae/conf/composition
k.kedronc784bbd2019-09-05 18:28:16 +020080 port: {{ .Values.service.internalPort2 }}
81 scheme: HTTPS
Areli, Fuss (af732p)307fdc72018-05-29 14:40:03 +030082 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
83 periodSeconds: {{ .Values.readiness.periodSeconds }}
84 env:
85 - name: ENVNAME
86 value: {{ .Values.global.env.name }}
87 - name: JAVA_OPTIONS
88 value: {{ .Values.config.javaOptions }}
89 - name: HOST_IP
90 valueFrom:
91 fieldRef:
92 fieldPath: status.podIP
93 volumeMounts:
94 - name: {{ include "common.fullname" . }}-environments
k.kedronc784bbd2019-09-05 18:28:16 +020095 mountPath: /root/chef-solo/environments/
Areli, Fuss (af732p)307fdc72018-05-29 14:40:03 +030096 - name: {{ include "common.fullname" . }}-localtime
97 mountPath: /etc/localtime
98 readOnly: true
99 - name: {{ include "common.fullname" . }}-logs
k.kedronc784bbd2019-09-05 18:28:16 +0200100 mountPath: /var/lib/jetty/logs
Areli, Fuss (af732p)307fdc72018-05-29 14:40:03 +0300101 - name: {{ include "common.fullname" . }}-logback
102 mountPath: /tmp/logback.xml
103 subPath: logback.xml
104 lifecycle:
105 postStart:
106 exec:
107 command: ["/bin/sh", "-c", "export LOG=wait_logback.log; touch $LOG; export SRC=/tmp/logback.xml; export DST=/var/lib/jetty/config/dcae-be/; while [ ! -e $DST ]; do echo 'Waiting for $DST...' >> $LOG; sleep 5; done; sleep 2; /bin/cp -f $SRC $DST; echo 'Done' >> $LOG"]
108 resources:
109{{ include "common.resources" . | indent 12 }}
110 {{- if .Values.nodeSelector }}
111 nodeSelector:
112{{ toYaml .Values.nodeSelector | indent 10 }}
113 {{- end -}}
114 {{- if .Values.affinity }}
115 affinity:
116{{ toYaml .Values.affinity | indent 10 }}
117 {{- end }}
118
119 # side car containers
120 - name: {{ include "common.name" . }}-filebeat-onap
121 image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
122 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
123 volumeMounts:
124 - name: {{ include "common.fullname" . }}-filebeat-conf
125 mountPath: /usr/share/filebeat/filebeat.yml
126 subPath: filebeat.yml
127 - name: {{ include "common.fullname" . }}-logs
128 mountPath: /var/log/onap
129 - name: {{ include "common.fullname" . }}-data-filebeat
130 mountPath: /usr/share/filebeat/data
131 volumes:
132 - name: {{ include "common.fullname" . }}-localtime
133 hostPath:
134 path: /etc/localtime
135 - name: {{ include "common.fullname" . }}-filebeat-conf
136 configMap:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100137 name: {{ include "common.release" . }}-sdc-filebeat-configmap
Areli, Fuss (af732p)307fdc72018-05-29 14:40:03 +0300138 - name: {{ include "common.fullname" . }}-data-filebeat
139 emptyDir: {}
140 - name: {{ include "common.fullname" . }}-logback
141 configMap:
142 name : {{ include "common.fullname" . }}-logging-configmap
143 - name: {{ include "common.fullname" . }}-environments
144 configMap:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100145 name: {{ include "common.release" . }}-sdc-environments-configmap
Areli, Fuss (af732p)307fdc72018-05-29 14:40:03 +0300146 defaultMode: 0755
147 - name: {{ include "common.fullname" . }}-logs
148 emptyDir: {}
149 imagePullSecrets:
150 - name: "{{ include "common.namespace" . }}-docker-registry-key"