Merge "Container restart loop"
[oom.git] / kubernetes / oof / charts / oof-has / charts / oof-has-api / 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-api
57           - --port={{ .Values.service.internalPort }}
58           - --
59           - --config-file=/usr/local/bin/conductor.conf
60           ports:
61           - containerPort: {{ .Values.service.internalPort }}
62           # disable liveness probe when breakpoints set in debugger
63           # so K8s doesn't restart unresponsive container
64           {{- if .Values.liveness.enabled }}
65           livenessProbe:
66             tcpSocket:
67               port: {{ .Values.service.internalPort }}
68             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
69             periodSeconds: {{ .Values.liveness.periodSeconds }}
70           {{ end -}}
71           readinessProbe:
72             tcpSocket:
73               port: {{ .Values.service.internalPort }}
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           resources:
88 {{ toYaml .Values.resources | indent 12 }}
89         {{- if .Values.nodeSelector }}
90         nodeSelector:
91 {{ toYaml .Values.nodeSelector | indent 10 }}
92         {{- end -}}
93         {{- if .Values.affinity }}
94         affinity:
95 {{ toYaml .Values.affinity | indent 10 }}
96         {{- end }}
97       volumes:
98         - name: localtime
99           hostPath:
100             path: /etc/localtime
101         - name: {{ .Values.global.commonConfigPrefix }}-config
102           configMap:
103             name: {{ .Values.global.commonConfigPrefix  }}-configmap
104             items:
105             - key: conductor.conf
106               path: conductor.conf
107             - key: log.conf
108               path: log.conf
109       imagePullSecrets:
110       - name: "{{ include "common.namespace" . }}-docker-registry-key"