Updating charts to use common resource template
[oom.git] / kubernetes / oof / charts / oof-has / charts / oof-has-data / templates / deployment.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 # Modifications Copyright © 2018 AT&T,VMware
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       - command:
36         - /root/ready.py
37         args:
38         - --container-name
39         - oof-has-music
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         - name: {{ include "common.name" . }}
51           image: "{{ include "common.repository" . }}/{{ .Values.global.image.optf_has }}"
52           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
53           command:
54           - python
55           args:
56           - /usr/local/bin/conductor-data
57           - --config-file=/usr/local/bin/conductor.conf
58           # disable liveness probe when breakpoints set in debugger
59           # so K8s doesn't restart unresponsive container
60           {{- if .Values.liveness.enabled }}
61           livenessProbe:
62             exec:
63               command:
64               - cat
65               - /usr/local/bin/healthy.sh
66             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
67             periodSeconds: {{ .Values.liveness.periodSeconds }}
68           {{ end -}}
69           readinessProbe:
70             exec:
71               command:
72               - cat
73               - /usr/local/bin/healthy.sh
74             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
75             periodSeconds: {{ .Values.readiness.periodSeconds }}
76           env:
77           volumeMounts:
78           - mountPath: /etc/localtime
79             name: localtime
80             readOnly: true
81           - mountPath: /usr/local/bin/conductor.conf
82             name: {{ .Values.global.commonConfigPrefix }}-config
83             subPath: conductor.conf
84           - mountPath: /usr/local/bin/log.conf
85             name: {{ .Values.global.commonConfigPrefix }}-config 
86             subPath: log.conf
87           - mountPath: /usr/local/bin/healthy.sh
88             name: {{ .Values.global.commonConfigPrefix }}-config
89             subPath: healthy.sh 
90           - mountPath: /usr/local/bin/aai_cert.cer
91             name: {{ .Values.global.commonConfigPrefix }}-config
92             subPath: aai_cert.cer
93           - mountPath: /usr/local/bin/aai_key.key
94             name: {{ .Values.global.commonConfigPrefix }}-config
95             subPath: aai_key.key
96           - mountPath: /usr/local/bin/AAF_RootCA.cer
97             name: {{ .Values.global.commonConfigPrefix }}-config
98             subPath: AAF_RootCA.cer
99           resources:
100 {{ include "common.resources" . | indent 12 }}
101         {{- if .Values.nodeSelector }}
102         nodeSelector:
103 {{ toYaml .Values.nodeSelector | indent 10 }}
104         {{- end -}}
105         {{- if .Values.affinity }}
106         affinity:
107 {{ toYaml .Values.affinity | indent 10 }}
108         {{- end }}
109       volumes:
110         - name: localtime
111           hostPath:
112             path: /etc/localtime
113         - name: {{ .Values.global.commonConfigPrefix }}-config
114           configMap:
115             name: {{ .Values.global.commonConfigPrefix }}-configmap
116             items:
117             - key: conductor.conf
118               path: conductor.conf
119             - key: log.conf
120               path: log.conf
121             - key: healthy.sh
122               path: healthy.sh 
123             - key: aai_cert.cer
124               path: aai_cert.cer
125             - key: aai_key.key
126               path: aai_key.key
127             - key: AAF_RootCA.cer
128               path: AAF_RootCA.cer
129       imagePullSecrets:
130       - name: "{{ include "common.namespace" . }}-docker-registry-key"