Upgrade VNFSDK to use common Postgres charts
[oom.git] / kubernetes / clamp / templates / deployment.yaml
1 # Copyright © 2017 Amdocs, 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
15 apiVersion: extensions/v1beta1
16 kind: Deployment
17 metadata:
18   name: {{ include "common.fullname" . }}
19   namespace: {{ include "common.namespace" . }}
20   labels:
21     app: {{ include "common.name" . }}
22     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
23     release: {{ .Release.Name }}
24     heritage: {{ .Release.Service }}
25 spec:
26   replicas: {{ .Values.replicaCount }}
27   template:
28     metadata:
29       labels:
30         app: {{ include "common.name" . }}
31         release: {{ .Release.Name }}
32     spec:
33       initContainers:
34       - command:
35         - /root/ready.py
36         args:
37         - --container-name
38         - {{ .Values.mariadb.nameOverride }}
39         env:
40         - name: NAMESPACE
41           valueFrom:
42             fieldRef:
43               apiVersion: v1
44               fieldPath: metadata.namespace
45         image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
46         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
47         name: {{ include "common.name" . }}-readiness
48       containers:
49         # side car containers
50         - name: {{ include "common.name" . }}-filebeat-onap
51           image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
52           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
53           volumeMounts:
54           - name: {{ include "common.fullname" . }}-filebeat-conf
55             mountPath: /usr/share/filebeat/filebeat.yml
56             subPath: filebeat.yml
57           - name: {{ include "common.fullname" . }}-data-filebeat
58             mountPath: /usr/share/filebeat/data
59           - name: {{ include "common.fullname" . }}-logs
60             mountPath: /var/log/onap
61         - name: {{ include "common.name" . }}
62           image: "{{ include "common.repository" . }}/{{ .Values.image }}"
63           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
64           args:
65             - "-Dcom.att.eelf.logging.file=file:/opt/clamp/logback.xml"
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           - mountPath: /opt/clamp/logback.xml
90             name: {{ include "common.fullname" . }}-config
91             subPath: logback.xml
92           env:
93             - name: SPRING_APPLICATION_JSON
94               valueFrom:
95                 configMapKeyRef:
96                   name: {{ template "common.fullname" . }}
97                   key: spring_application_json
98           resources:
99 {{ toYaml .Values.resources | indent 12 }}
100         {{- if .Values.nodeSelector }}
101         nodeSelector:
102 {{ toYaml .Values.nodeSelector | indent 10 }}
103         {{- end -}}
104         {{- if .Values.affinity }}
105         affinity:
106 {{ toYaml .Values.affinity | indent 10 }}
107         {{- end }}
108       volumes:
109         - name: {{ include "common.fullname" . }}-config
110           configMap:
111             name: {{ include "common.fullname" . }}
112             items:
113             - key: sdc-controllers-config.json
114               path: sdc-controllers-config.json
115             - key: logback.xml
116               path: logback.xml
117         - name: {{ include "common.fullname" . }}-filebeat-conf
118           configMap:
119             name: {{ .Release.Name }}-clamp-filebeat-configmap
120         - name: {{ include "common.fullname" . }}-data-filebeat
121           emptyDir: {}
122         - name:  {{ include "common.fullname" . }}-logs
123           emptyDir: {}
124       imagePullSecrets:
125       - name: "{{ include "common.namespace" . }}-docker-registry-key"