Merge "Adding NSSMF adapter chart"
[oom.git] / kubernetes / clamp / templates / deployment.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 # Modifications Copyright © 2018 AT&T
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: {{ include "common.release" . }}
25     heritage: {{ .Release.Service }}
26 spec:
27   replicas: {{ .Values.replicaCount }}
28   template:
29     metadata:
30       labels:
31         app: {{ include "common.name" . }}
32         release: {{ include "common.release" . }}
33     spec:
34       initContainers:
35       - command:
36         - /root/ready.py
37         args:
38         - --container-name
39         - clamp-backend
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         # side car containers
51         {{ if .Values.global.centralizedLoggingEnabled }}{{ include "common.log.sidecar" . | nindent 8 }}{{ end }}
52         # main container
53         - name: {{ include "common.name" . }}
54           image: "{{ include "common.repository" . }}/{{ .Values.image }}"
55           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
56           ports:
57           - containerPort: {{ .Values.service.internalPort }}
58           # disable liveness probe when breakpoints set in debugger
59           # so K8s doesn't restart unresponsive container
60           {{- if eq .Values.liveness.enabled true }}
61           livenessProbe:
62             tcpSocket:
63               port: {{ .Values.service.internalPort }}
64             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
65             periodSeconds: {{ .Values.liveness.periodSeconds }}
66           {{ end -}}
67           readinessProbe:
68             tcpSocket:
69               port: {{ .Values.service.internalPort }}
70             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
71             periodSeconds: {{ .Values.readiness.periodSeconds }}
72           volumeMounts:
73           - name: logs
74             mountPath: {{ .Values.log.path }}
75           - mountPath: /etc/nginx/conf.d/default.conf
76             name: {{ include "common.fullname" . }}-config
77             subPath: default.conf
78           resources:
79 {{ include "common.resources" . | indent 12 }}
80         {{- if .Values.nodeSelector }}
81         nodeSelector:
82 {{ toYaml .Values.nodeSelector | indent 10 }}
83         {{- end -}}
84         {{- if .Values.affinity }}
85         affinity:
86 {{ toYaml .Values.affinity | indent 10 }}
87         {{- end }}
88       volumes:
89         - name: {{ include "common.fullname" . }}-config
90           configMap:
91             name: {{ include "common.fullname" . }}
92             items:
93             - key: default.conf
94               path: default.conf
95         - name:  logs
96           emptyDir: {}
97         {{ if .Values.global.centralizedLoggingEnabled }}{{ include "common.log.volumes" . | nindent 8 }}{{ end }}
98       imagePullSecrets:
99       - name: "{{ include "common.namespace" . }}-docker-registry-key"