Fix dictionary merge
[oom.git] / kubernetes / cds / templates / deployment.yaml
1 # Copyright © 2018 Orange
2 # Modifications Copyright © 2018  Amdocs, Bell Canada
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         name: {{ include "common.fullname" . }}
34     spec:
35       containers:
36         - name: {{ include "common.name" . }}
37           image: "{{ include "common.repository" . }}/{{ .Values.image }}"
38           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
39           ports:
40             - containerPort: {{ .Values.service.internalPort }}
41           # disable liveness probe when breakpoints set in debugger
42           # so K8s doesn't restart unresponsive container
43           {{ if .Values.liveness.enabled }}
44           livenessProbe:
45             tcpSocket:
46               port: {{ .Values.service.internalPort }}
47             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
48             periodSeconds: {{ .Values.liveness.periodSeconds }}
49           {{ end }}
50           env:
51             - name: HOST
52               value: 0.0.0.0
53           readinessProbe:
54             tcpSocket:
55               port: {{ .Values.service.internalPort }}
56             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
57             periodSeconds: {{ .Values.readiness.periodSeconds }}
58           volumeMounts:
59             - mountPath: /etc/localtime
60               name: localtime
61               readOnly: true
62           resources:
63 {{ include "common.resources" . | indent 12 }}
64         {{- if .Values.nodeSelector }}
65         nodeSelector:
66 {{ toYaml .Values.nodeSelector | indent 10 }}
67         {{- end -}}
68         {{- if .Values.affinity }}
69         affinity:
70 {{ toYaml .Values.affinity | indent 10 }}
71         {{- end }}
72       # side car containers
73         # - name: filebeat-onap
74         #   image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
75         #   imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
76         #   volumeMounts:
77         #   - mountPath: /usr/share/filebeat/filebeat.yml
78         #     name: filebeat-conf
79         #     subPath: filebeat.yml
80         #   - mountPath: /home/esr/works/logs
81         #     name: esr-server-logs
82         #   - mountPath: /usr/share/filebeat/data
83         #     name: esr-server-filebeat
84       volumes:
85         - name: localtime
86           hostPath:
87             path: /etc/localtime
88         # - name: filebeat-conf
89         #   configMap:
90         #     name: {{ include "common.fullname" . }}-esr-filebeat
91         # - name: esr-server-logs
92         #   emptyDir: {}
93         # - name: esr-server-filebeat
94         #   emptyDir: {}
95         # - name: esrserver-log
96         #   configMap:
97         #     name: {{ include "common.fullname" . }}-esr-esrserver-log
98       imagePullSecrets:
99       - name: "{{ include "common.namespace" . }}-docker-registry-key"