Merge "OOM changes to support PE https"
[oom.git] / kubernetes / sdc / charts / sdc-onboarding-be / templates / deployment.yaml
1 # Copyright © 2017 Amdocs, AT&T, Bell Canada
2 # Modifications Copyright © 2018  ZTE
3 #
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
16 apiVersion: extensions/v1beta1
17 kind: Deployment
18 metadata:
19   name: {{ include "common.fullname" . }}
20   namespace: {{ include "common.namespace" . }}
21   labels:
22     app: {{ include "common.name" . }}
23     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
24     release: {{ .Release.Name }}
25     heritage: {{ .Release.Service }}
26 spec:
27   replicas: {{ .Values.replicaCount }}
28   template:
29     metadata:
30       labels:
31         app: {{ include "common.name" . }}
32         release: {{ .Release.Name }}
33     spec:
34       initContainers:
35       - 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
42         - {{ .Release.Name }}-sdc-onboarding-be-cassandra-init
43         env:
44         - name: NAMESPACE
45           valueFrom:
46             fieldRef:
47               apiVersion: v1
48               fieldPath: metadata.namespace
49       containers:
50         - name: {{ include "common.name" . }}
51           image: "{{ include "common.repository" . }}/{{ .Values.image }}"
52           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
53           ports:
54           - containerPort: {{ .Values.service.internalPort }}
55           - containerPort: {{ .Values.service.internalPort2 }}
56           {{ if eq .Values.liveness.enabled true }}
57           livenessProbe:
58             tcpSocket:
59               port: {{ .Values.service.internalPort }}
60             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
61             periodSeconds: {{ .Values.liveness.periodSeconds }}
62           {{ end }}
63           readinessProbe:
64             exec:
65               command:
66               - "/var/lib/ready-probe.sh"
67             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
68             periodSeconds: {{ .Values.readiness.periodSeconds }}
69           env:
70           - name: ENVNAME
71             value: {{ .Values.global.env.name }}
72           - name: JAVA_OPTIONS
73             value: {{ .Values.config.javaOptions }}
74           - name: SDC_CLUSTER_NAME
75             value: "SDC-CS-{{ .Values.global.env.name }}"
76           - name: cassandra_ssl_enabled
77             value: {{ .Values.config.cassandraSslEnabled | quote }}
78           - name: HOST_IP
79             valueFrom:
80               fieldRef:
81                 fieldPath: status.podIP
82           - name: SDC_USER
83             valueFrom:
84               secretKeyRef: {name: {{ .Release.Name }}-sdc-cs-secrets, key: sdc_user}
85           - name: SDC_PASSWORD
86             valueFrom:
87               secretKeyRef: {name: {{ .Release.Name }}-sdc-cs-secrets, key: sdc_password}
88           volumeMounts:
89           - name: {{ include "common.fullname" . }}-environments
90             mountPath: /root/chef-solo/environments/
91           - name: {{ include "common.fullname" . }}-localtime
92             mountPath: /etc/localtime
93             readOnly: true
94           - name: {{ include "common.fullname" . }}-logs
95             mountPath: /var/log/onap
96           - name: {{ include "common.fullname" . }}-logback
97             mountPath: /tmp/logback.xml
98             subPath: logback.xml
99           lifecycle:
100             postStart:
101               exec:
102                 command: ["/bin/sh", "-c", "export LOG=wait_logback.log; touch $LOG; export SRC=/tmp/logback.xml; export DST=/var/lib/jetty/config/onboarding-be/; while [ ! -e $DST ]; do echo 'Waiting for $DST...' >> $LOG; sleep 5; done; sleep 2; /bin/cp -f $SRC $DST; echo 'Done' >> $LOG"]
103           resources:
104 {{ toYaml .Values.resources | indent 12 }}
105         {{- if .Values.nodeSelector }}
106         nodeSelector:
107 {{ toYaml .Values.nodeSelector | indent 10 }}
108         {{- end -}}
109         {{- if .Values.affinity }}
110         affinity:
111 {{ toYaml .Values.affinity | indent 10 }}
112         {{- end }}
113
114         # side car containers
115         - name: {{ include "common.name" . }}-filebeat-onap
116           image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
117           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
118           volumeMounts:
119           - name: {{ include "common.fullname" . }}-filebeat-conf
120             mountPath: /usr/share/filebeat/filebeat.yml
121             subPath: filebeat.yml
122           - name: {{ include "common.fullname" . }}-logs
123             mountPath: /var/log/onap
124           - name: {{ include "common.fullname" . }}-data-filebeat
125             mountPath: /usr/share/filebeat/data
126       volumes:
127       - name: {{ include "common.fullname" . }}-localtime
128         hostPath:
129           path: /etc/localtime
130       - name: {{ include "common.fullname" . }}-filebeat-conf
131         configMap:
132           name: {{ .Release.Name }}-sdc-filebeat-configmap
133       - name: {{ include "common.fullname" . }}-data-filebeat
134         emptyDir: {}
135       - name: {{ include "common.fullname" . }}-logback
136         configMap:
137           name : {{ include "common.fullname" . }}-logging-configmap
138       - name: {{ include "common.fullname" . }}-environments
139         configMap:
140           name: {{ .Release.Name }}-sdc-environments-configmap
141           defaultMode: 0755
142       - name:  {{ include "common.fullname" . }}-logs
143         emptyDir: {}
144       imagePullSecrets:
145       - name: "{{ include "common.namespace" . }}-docker-registry-key"