Merge "[SO] Correct connection configuration to sdnc"
[oom.git] / kubernetes / clamp / charts / clamp-backend / templates / deployment.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 # Modifications Copyright © 2018 AT&T
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: {{ include "common.release" . }}
25     heritage: {{ .Release.Service }}
26 spec:
27   replicas: {{ .Values.replicaCount }}
28   template:
29     metadata:
30       labels:
31         app: {{ include "common.name" . }}
32         release: {{ include "common.release" . }}
33     spec:
34       initContainers:
35       - command:
36         - /root/ready.py
37         args:
38         - --container-name
39         - mariadb
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" . }}-readiness
49       containers:
50         # side car containers
51         - name: {{ include "common.name" . }}-filebeat-onap
52           image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
53           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
54           volumeMounts:
55           - name: {{ include "common.fullname" . }}-filebeat-conf
56             mountPath: /usr/share/filebeat/filebeat.yml
57             subPath: filebeat.yml
58           - name: {{ include "common.fullname" . }}-data-filebeat
59             mountPath: /usr/share/filebeat/data
60           - name: {{ include "common.fullname" . }}-logs
61             mountPath: /var/log/onap
62         - name: {{ include "common.name" . }}
63           image: "{{ include "common.repository" . }}/{{ .Values.image }}"
64           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
65           args:
66             - ""
67           ports:
68           - containerPort: {{ .Values.service.internalPort }}
69           # disable liveness probe when breakpoints set in debugger
70           # so K8s doesn't restart unresponsive container
71           {{- if eq .Values.liveness.enabled true }}
72           livenessProbe:
73             tcpSocket:
74               port: {{ .Values.service.internalPort }}
75             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
76             periodSeconds: {{ .Values.liveness.periodSeconds }}
77           {{ end -}}
78           readinessProbe:
79             tcpSocket:
80               port: {{ .Values.service.internalPort }}
81             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
82             periodSeconds: {{ .Values.readiness.periodSeconds }}
83           volumeMounts:
84           - name: {{ include "common.fullname" . }}-logs
85             mountPath: /var/log/onap
86           - mountPath: /opt/clamp/sdc-controllers-config.json
87             name: {{ include "common.fullname" . }}-config
88             subPath: sdc-controllers-config.json
89           env:
90             - name: SPRING_APPLICATION_JSON
91               valueFrom:
92                 configMapKeyRef:
93                   name: {{ template "common.fullname" . }}
94                   key: spring_application_json
95           resources:
96 {{ include "common.resources" . | indent 12 }}
97         {{- if .Values.nodeSelector }}
98         nodeSelector:
99 {{ toYaml .Values.nodeSelector | indent 10 }}
100         {{- end -}}
101         {{- if .Values.affinity }}
102         affinity:
103 {{ toYaml .Values.affinity | indent 10 }}
104         {{- end }}
105       volumes:
106         - name: {{ include "common.fullname" . }}-config
107           configMap:
108             name: {{ include "common.fullname" . }}
109             items:
110             - key: sdc-controllers-config.json
111               path: sdc-controllers-config.json
112         - name: {{ include "common.fullname" . }}-filebeat-conf
113           configMap:
114             name: {{ include "common.release" . }}-clamp-filebeat-configmap
115         - name: {{ include "common.fullname" . }}-data-filebeat
116           emptyDir: {}
117         - name:  {{ include "common.fullname" . }}-logs
118           emptyDir: {}
119       imagePullSecrets:
120       - name: "{{ include "common.namespace" . }}-docker-registry-key"