[CONSUL] Add limits to consul chart.
[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: apps/v1
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   selector:
28     matchLabels:
29       app: {{ include "common.name" . }}
30   replicas: {{ .Values.replicaCount }}
31   template:
32     metadata:
33       labels:
34         app: {{ include "common.name" . }}
35         release: {{ include "common.release" . }}
36     spec:
37       securityContext:
38         runAsUser: 1000
39         runAsGroup: 1001
40         fsGroup: 1001
41       initContainers:
42       - command:
43         - cp
44         args:
45         - -r
46         - -T
47         - /home/esr/tomcat
48         - /opt/tomcat
49         securityContext:
50           privileged: true
51         image: "{{ include "common.repository" . }}/{{ .Values.image }}"
52         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
53         name: create-tomcat-dir
54         volumeMounts:
55         - name: tomcat-workdir
56           mountPath: /opt/tomcat
57
58       containers:
59         - name: {{ include "common.name" . }}
60           image: "{{ include "common.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           env:
79             - name: MSB_ADDR
80               value: {{ tpl .Values.msbaddr . }}
81           volumeMounts:
82             - name: tomcat-workdir
83               mountPath: /home/esr/tomcat/
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
95       volumes:
96       - name: tomcat-workdir
97         emptyDir: {}
98
99       imagePullSecrets:
100       - name: "{{ include "common.namespace" . }}-docker-registry-key"