13495586515ed3c413ffe2684f90bfcc1866a937
[oom.git] / kubernetes / policy / components / policy-clamp-fe / templates / deployment.yaml
1 {{/*
2 # Copyright © 2017 Amdocs, Bell Canada
3 # Modifications Copyright © 2018 AT&T
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 #       http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 */}}
17
18 apiVersion: apps/v1
19 kind: Deployment
20 metadata:
21   name: {{ include "common.fullname" . }}
22   namespace: {{ include "common.namespace" . }}
23   labels:
24     app: {{ include "common.name" . }}
25     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
26     release: {{ include "common.release" . }}
27     heritage: {{ .Release.Service }}
28 spec:
29   replicas: {{ .Values.replicaCount }}
30   selector:
31     matchLabels:
32       app: {{ include "common.name" . }}
33   template:
34     metadata:
35       labels:
36         app: {{ include "common.name" . }}
37         release: {{ include "common.release" . }}
38     spec:
39       initContainers:
40       - command:
41         - /app/ready.py
42         args:
43         - --container-name
44         - policy-clamp-be
45         env:
46         - name: NAMESPACE
47           valueFrom:
48             fieldRef:
49               apiVersion: v1
50               fieldPath: metadata.namespace
51         image: {{ include "repositoryGenerator.image.readiness" . }}
52         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
53         name: {{ include "common.name" . }}-readiness
54 {{ include "common.certInitializer.initContainer" . | nindent 6 }}
55       containers:
56         # side car containers
57         {{ if .Values.global.centralizedLoggingEnabled }}{{ include "common.log.sidecar" . | nindent 8 }}{{ end }}
58         # main container
59         - name: {{ include "common.name" . }}
60           image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
61           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
62           ports:
63           - containerPort: {{ .Values.service.internalPort }}
64           # disable liveness probe when breakpoints set in debugger
65           # so K8s doesn't restart unresponsive container
66           {{- if eq .Values.liveness.enabled true }}
67           livenessProbe:
68             tcpSocket:
69               port: {{ .Values.service.internalPort }}
70             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
71             periodSeconds: {{ .Values.liveness.periodSeconds }}
72           {{ end -}}
73           readinessProbe:
74             tcpSocket:
75               port: {{ .Values.service.internalPort }}
76             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
77             periodSeconds: {{ .Values.readiness.periodSeconds }}
78           volumeMounts: {{ include "common.certInitializer.volumeMount" . | nindent 10 }}
79           - name: logs
80             mountPath: {{ .Values.log.path }}
81           - mountPath: /etc/nginx/conf.d/default.conf
82             name: {{ include "common.fullname" . }}-config
83             subPath: default.conf
84           resources:
85 {{ include "common.resources" . | indent 12 }}
86         {{- if .Values.nodeSelector }}
87         nodeSelector:
88 {{ toYaml .Values.nodeSelector | indent 10 }}
89         {{- end -}}
90         {{- if .Values.affinity }}
91         affinity:
92 {{ toYaml .Values.affinity | indent 10 }}
93         {{- end }}
94       serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
95       volumes: {{ include "common.certInitializer.volumes" . | nindent 8 }}
96         - name: {{ include "common.fullname" . }}-config
97           configMap:
98             name: {{ include "common.fullname" . }}
99             items:
100             - key: default.conf
101               path: default.conf
102         - name:  logs
103           emptyDir: {}
104         {{ if .Values.global.centralizedLoggingEnabled }}{{ include "common.log.volumes" . | nindent 8 }}{{ end }}
105       imagePullSecrets:
106       - name: "{{ include "common.namespace" . }}-docker-registry-key"