[CONSUL] Add limits to consul chart.
[oom.git] / kubernetes / portal / components / portal-mariadb / 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       initContainers:
38       - name: volume-permissions
39         image: "{{ .Values.global.busyboxRepository }}/{{ .Values.global.busyboxImage }}"
40         command: ['sh', '-c', 'chmod -R 777 /var/lib/mysql']
41         volumeMounts:
42         - mountPath: /var/lib/mysql
43           name: mariadb-data
44       containers:
45         - name: {{ include "common.name" . }}
46           image: "{{ include "common.repository" . }}/{{ .Values.image }}"
47           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
48           ports:
49           - containerPort: {{ .Values.service.internalPort }}
50           # disable liveness probe when breakpoints set in debugger
51           # so K8s doesn't restart unresponsive container
52           {{- if eq .Values.liveness.enabled true }}
53           livenessProbe:
54             tcpSocket:
55               port: {{ .Values.service.internalPort }}
56             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
57             periodSeconds: {{ .Values.liveness.periodSeconds }}
58           {{end -}}
59           readinessProbe:
60             tcpSocket:
61               port: {{ .Values.service.internalPort }}
62             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
63             periodSeconds: {{ .Values.readiness.periodSeconds }}
64           env:
65             - name: MYSQL_HOST
66               value: "{{ include "common.servicename" . }}"
67             - name: MYSQL_ROOT_PASSWORD
68               valueFrom:
69                 secretKeyRef:
70                   name: {{ template "common.fullname" . }}
71                   key: db-root-password
72             - name: MYSQL_USER
73               valueFrom:
74                 secretKeyRef:
75                   name: {{ template "common.fullname" . }}
76                   key: backend-db-user
77             - name: MYSQL_PASSWORD
78               valueFrom:
79                 secretKeyRef:
80                   name: {{ template "common.fullname" . }}
81                   key: backend-db-password
82             - name: PORTAL_DB_TABLES
83               value: {{ .Values.config.backend_portal_tables }}
84           volumeMounts:
85           - mountPath: /var/lib/mysql
86             name: mariadb-data
87           - mountPath: /etc/localtime
88             name: localtime
89             readOnly: true
90           - mountPath: /usr/local/bin/docker-entrypoint.sh
91             subPath: docker-entrypoint.sh
92             name: docker-entry
93           resources:
94 {{ include "common.resources" . | indent 12 }}
95         {{- if .Values.nodeSelector }}
96         nodeSelector:
97 {{ toYaml .Values.nodeSelector | indent 10 }}
98         {{- end -}}
99         {{- if .Values.affinity }}
100         affinity:
101 {{ toYaml .Values.affinity | indent 10 }}
102         {{- end }}
103       volumes:
104       {{- if .Values.persistence.enabled }}
105         - name: mariadb-data
106           persistentVolumeClaim:
107             claimName: {{ include "common.fullname" . }}
108       {{- else }}
109           emptyDir: {}
110       {{- end }}
111         - name: localtime
112           hostPath:
113             path: /etc/localtime
114         - name: docker-entry
115           configMap:
116             name: {{ include "common.fullname" . }}-mariadb
117             defaultMode: 0755
118       imagePullSecrets:
119       - name: "{{ include "common.namespace" . }}-docker-registry-key"