Merge "[COMMON] Enable password generation in postgres"
[oom.git] / kubernetes / esr / charts / esr-gui / 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       securityContext:
35         runAsUser: 1000
36         runAsGroup: 1001
37         fsGroup: 1001
38       initContainers:
39       - command:
40         - cp
41         args:
42         - -r
43         - -T
44         - /home/esr/tomcat
45         - /opt/tomcat
46         securityContext:
47           privileged: true
48         image: "{{ include "common.repository" . }}/{{ .Values.image }}"
49         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
50         name: create-tomcat-dir
51         volumeMounts:
52         - name: tomcat-workdir
53           mountPath: /opt/tomcat
54
55       containers:
56         - name: {{ include "common.name" . }}
57           image: "{{ include "common.repository" . }}/{{ .Values.image }}"
58           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
59           ports:
60           - containerPort: {{ .Values.service.internalPort }}
61           # disable liveness probe when breakpoints set in debugger
62           # so K8s doesn't restart unresponsive container
63           {{- if eq .Values.liveness.enabled true }}
64           livenessProbe:
65             tcpSocket:
66               port: {{ .Values.service.internalPort }}
67             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
68             periodSeconds: {{ .Values.liveness.periodSeconds }}
69           {{ end -}}
70           readinessProbe:
71             tcpSocket:
72               port: {{ .Values.service.internalPort }}
73             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
74             periodSeconds: {{ .Values.readiness.periodSeconds }}
75           env:
76             - name: MSB_ADDR
77               value: {{ tpl .Values.msbaddr . }}
78           volumeMounts:
79             - name: tomcat-workdir
80               mountPath: /home/esr/tomcat/
81           resources:
82 {{ include "common.resources" . | indent 12 }}
83         {{- if .Values.nodeSelector }}
84           nodeSelector:
85 {{ toYaml .Values.nodeSelector | indent 10 }}
86         {{- end -}}
87         {{- if .Values.affinity }}
88           affinity:
89 {{ toYaml .Values.affinity | indent 10 }}
90         {{- end }}
91
92       volumes:
93       - name: tomcat-workdir
94         emptyDir: {}
95
96       imagePullSecrets:
97       - name: "{{ include "common.namespace" . }}-docker-registry-key"