Merge "[CLAMP] Update mariadb db to latest"
[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           volumeMounts:
73           - mountPath: /var/lib/mysql
74             name: mariadb-data
75           - mountPath: /etc/localtime
76             name: localtime
77             readOnly: true
78           - mountPath: /usr/local/bin/docker-entrypoint.sh
79             subPath: docker-entrypoint.sh
80             name: docker-entry
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       volumes:
92       {{- if .Values.persistence.enabled }}
93         - name: mariadb-data
94           persistentVolumeClaim:
95             claimName: {{ include "common.fullname" . }}
96       {{- else }}
97           emptyDir: {}
98       {{- end }}
99         - name: localtime
100           hostPath:
101             path: /etc/localtime
102         - name: docker-entry
103           configMap:
104             name: {{ include "common.fullname" . }}-mariadb
105             defaultMode: 0755
106       imagePullSecrets:
107       - name: "{{ include "common.namespace" . }}-docker-registry-key"