Merge "clamphealth check"
[oom.git] / kubernetes / oof / charts / oof-has / charts / oof-has-data / 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         - oof-has-music
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         - name: {{ include "common.name" . }}
50           image: "{{ include "common.repository" . }}/{{ .Values.global.image.optf_has }}"
51           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
52           command:
53           - python
54           args:
55           - /usr/local/bin/conductor-data
56           - --config-file=/usr/local/bin/conductor.conf
57           # disable liveness probe when breakpoints set in debugger
58           # so K8s doesn't restart unresponsive container
59           {{- if .Values.liveness.enabled }}
60           livenessProbe:
61             exec:
62               command:
63               - cat
64               - /usr/local/bin/healthy.sh
65             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
66             periodSeconds: {{ .Values.liveness.periodSeconds }}
67           {{ end -}}
68           readinessProbe:
69             exec:
70               command:
71               - cat
72               - /usr/local/bin/healthy.sh
73             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
74             periodSeconds: {{ .Values.readiness.periodSeconds }}
75           env:
76           volumeMounts:
77           - mountPath: /etc/localtime
78             name: localtime
79             readOnly: true
80           - mountPath: /usr/local/bin/conductor.conf
81             name: {{ .Values.global.commonConfigPrefix }}-config
82             subPath: conductor.conf
83           - mountPath: /usr/local/bin/log.conf
84             name: {{ .Values.global.commonConfigPrefix }}-config 
85             subPath: log.conf
86           - mountPath: /usr/local/bin/healthy.sh
87             name: {{ .Values.global.commonConfigPrefix }}-config
88             subPath: healthy.sh 
89           - mountPath: /usr/local/bin/aai_cert.cer
90             name: {{ .Values.global.commonConfigPrefix }}-config
91             subPath: aai_cert.cer
92           - mountPath: /usr/local/bin/aai_key.key
93             name: {{ .Values.global.commonConfigPrefix }}-config
94             subPath: aai_key.key
95           - mountPath: /usr/local/bin/bundle.pem
96             name: {{ .Values.global.commonConfigPrefix }}-config
97             subPath: bundle.pem
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: localtime
110           hostPath:
111             path: /etc/localtime
112         - name: {{ .Values.global.commonConfigPrefix }}-config
113           configMap:
114             name: {{ .Values.global.commonConfigPrefix }}-configmap
115             items:
116             - key: conductor.conf
117               path: conductor.conf
118             - key: log.conf
119               path: log.conf
120             - key: healthy.sh
121               path: healthy.sh 
122             - key: aai_cert.cer
123               path: aai_cert.cer
124             - key: aai_key.key
125               path: aai_key.key
126             - key: bundle.pem
127               path: bundle.pem
128       imagePullSecrets:
129       - name: "{{ include "common.namespace" . }}-docker-registry-key"