blob: 7d6e1628138a6d008fcdaf580b42177f8b207ff3 [file] [log] [blame]
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00001# Copyright © 2017 Amdocs, Bell Canada
Mukul379e2522018-09-05 12:26:02 +00002# Modifications Copyright © 2018 AT&T
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00003#
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
Magdalena_Biernacka7d0dcbe2020-07-12 23:21:43 +020016apiVersion: apps/v1
vaibhav_16decf67e4182018-03-19 05:45:47 +000017kind: Deployment
18metadata:
19 name: {{ include "common.fullname" . }}
20 namespace: {{ include "common.namespace" . }}
21 labels:
22 app: {{ include "common.name" . }}
23 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010024 release: {{ include "common.release" . }}
vaibhav_16decf67e4182018-03-19 05:45:47 +000025 heritage: {{ .Release.Service }}
26spec:
27 replicas: {{ .Values.replicaCount }}
Magdalena_Biernacka7d0dcbe2020-07-12 23:21:43 +020028 selector:
29 matchLabels:
30 app: {{ include "common.name" . }}
vaibhav_16decf67e4182018-03-19 05:45:47 +000031 template:
32 metadata:
33 labels:
34 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010035 release: {{ include "common.release" . }}
vaibhav_16decf67e4182018-03-19 05:45:47 +000036 spec:
37 containers:
38 - name: {{ include "common.name" . }}
BorislavGdf11cd52018-05-06 12:55:20 +000039 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
vaibhav_16decf67e4182018-03-19 05:45:47 +000040 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
41 ports:
42 - containerPort: {{ .Values.service.internalPort }}
43 # disable liveness probe when breakpoints set in debugger
44 # so K8s doesn't restart unresponsive container
45 {{- if eq .Values.liveness.enabled true }}
46 livenessProbe:
47 tcpSocket:
48 port: {{ .Values.service.internalPort }}
49 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
50 periodSeconds: {{ .Values.liveness.periodSeconds }}
51 {{ end -}}
52 readinessProbe:
53 tcpSocket:
54 port: {{ .Values.service.internalPort }}
55 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
56 periodSeconds: {{ .Values.readiness.periodSeconds }}
57 env:
JulienBe26df3202020-04-10 16:50:08 +020058 - name: MYSQL_USER
59 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-secret" "key" "login") | indent 12 }}
60 - name: MYSQL_PASSWORD
61 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-secret" "key" "password") | indent 12 }}
62 - name: MYSQL_ROOT_PASSWORD
63 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-root-pass" "key" "password") | indent 12 }}
64 - name: MYSQL_DATABASE
65 value: {{ tpl .Values.db.databaseName .}}
vaibhav_16decf67e4182018-03-19 05:45:47 +000066 volumeMounts:
Krzysztof Opasiak37a4e702020-05-25 22:22:33 +020067 - mountPath: /docker-entrypoint.sh
68 subPath: docker-entrypoint.sh
69 name: init-script
vaibhav_16decf67e4182018-03-19 05:45:47 +000070 - mountPath: /etc/localtime
71 name: localtime
72 readOnly: true
JulienBe26df3202020-04-10 16:50:08 +020073 - mountPath: /docker-entrypoint-initdb.d/
vaibhav_16decf67e4182018-03-19 05:45:47 +000074 name: docker-entrypoint-bulkload
75 - mountPath: /etc/mysql/conf.d/conf1/
76 name: clamp-mariadb-conf
77 - mountPath: /var/lib/mysql
78 name: clamp-mariadb-data
79 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +000080{{ include "common.resources" . | indent 12 }}
vaibhav_16decf67e4182018-03-19 05:45:47 +000081 {{- if .Values.nodeSelector }}
82 nodeSelector:
83{{ toYaml .Values.nodeSelector | indent 10 }}
84 {{- end -}}
85 {{- if .Values.affinity }}
86 affinity:
87{{ toYaml .Values.affinity | indent 10 }}
88 {{- end }}
89 volumes:
90 {{- if .Values.persistence.enabled }}
91 - name: clamp-mariadb-data
92 persistentVolumeClaim:
93 claimName: {{ include "common.fullname" . }}
94 {{- else }}
95 emptyDir: {}
96 {{- end }}
vaibhav_16decf67e4182018-03-19 05:45:47 +000097 - name: docker-entrypoint-bulkload
98 configMap:
99 name: clamp-entrypoint-bulkload-configmap
100 - name: clamp-mariadb-conf
101 configMap:
102 name: clamp-mariadb-conf-configmap
103 - name: localtime
104 hostPath:
105 path: /etc/localtime
Krzysztof Opasiak37a4e702020-05-25 22:22:33 +0200106 - name: init-script
107 configMap:
108 name: {{ include "common.fullname" . }}
109 defaultMode: 0755
vaibhav_16decf67e4182018-03-19 05:45:47 +0000110 imagePullSecrets:
111 - name: "{{ include "common.namespace" . }}-docker-registry-key"