d90943c72bead7c2c0f58014219b621c6d878835
[oom.git] / kubernetes / oof / charts / oof-has / charts / oof-has-reservation / 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-reservation
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           readinessProbe:
69             exec:
70               command:
71               - cat
72               - /usr/local/bin/healthy.sh
73             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
74             periodSeconds: {{ .Values.readiness.periodSeconds }}
75           {{ end -}}
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           resources:
91 {{ toYaml (pluck .Values.flavor .Values.resources| first) | indent 12 }}
92         {{- if .Values.nodeSelector }}
93         nodeSelector:
94 {{ toYaml .Values.nodeSelector | indent 10 }}
95         {{- end -}}
96         {{- if .Values.affinity }}
97         affinity:
98 {{ toYaml .Values.affinity | indent 10 }}
99         {{- end }}
100       volumes:
101         - name: localtime
102           hostPath:
103             path: /etc/localtime
104         - name: {{ .Values.global.commonConfigPrefix }}-config
105           configMap:
106             name: {{ .Values.global.commonConfigPrefix }}-configmap
107             items:
108             - key: conductor.conf
109               path: conductor.conf
110             - key: log.conf
111               path: log.conf
112             - key: healthy.sh
113               path: healthy.sh
114       imagePullSecrets:
115       - name: "{{ include "common.namespace" . }}-docker-registry-key"