blob: a9cf562e5b5395c1938a6b8c6809b5633e2755f1 [file] [log] [blame]
Jakub Latusek9b130972020-10-21 13:36:30 +02001{{/*
Mike Elliott6ba69cd2018-04-03 16:37:06 -04002# Copyright © 2017 Amdocs, Bell Canada
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.
Jakub Latusek9b130972020-10-21 13:36:30 +020015*/}}
Mike Elliott6ba69cd2018-04-03 16:37:06 -040016
Grzegorz-Lis7b2e7142020-07-30 10:04:53 +020017apiVersion: apps/v1
Mike Elliott6ba69cd2018-04-03 16:37:06 -040018kind: Deployment
19metadata:
20 name: {{ include "common.fullname" . }}
21 namespace: {{ include "common.namespace" . }}
22 labels:
23 app: {{ include "common.name" . }}
24 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010025 release: {{ include "common.release" . }}
Mike Elliott6ba69cd2018-04-03 16:37:06 -040026 heritage: {{ .Release.Service }}
27spec:
Grzegorz-Lis7b2e7142020-07-30 10:04:53 +020028 selector:
29 matchLabels:
30 app: {{ include "common.name" . }}
Mike Elliott6ba69cd2018-04-03 16:37:06 -040031 replicas: {{ .Values.replicaCount }}
32 template:
33 metadata:
34 labels:
35 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010036 release: {{ include "common.release" . }}
Huabing Zhaoc171ac22018-07-31 06:49:03 +000037 annotations:
38 sidecar.istio.io/inject: "{{.Values.istioSidecar}}"
Mike Elliott6ba69cd2018-04-03 16:37:06 -040039 spec:
40 initContainers:
Bharath Thiruveedula63070de2018-08-16 10:08:52 +053041 - command:
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020042 - /app/ready.py
Bharath Thiruveedula63070de2018-08-16 10:08:52 +053043 args:
Andreas Geisslercfd84342023-08-16 17:18:49 +020044 - --app-name
45 - {{ include "common.mariadbAppName" . }}
Bharath Thiruveedula63070de2018-08-16 10:08:52 +053046 env:
47 - name: NAMESPACE
48 valueFrom:
49 fieldRef:
50 apiVersion: v1
51 fieldPath: metadata.namespace
Sylvain Desbureaux0cd5fee2020-11-19 17:35:56 +010052 image: {{ include "repositoryGenerator.image.readiness" . }}
Bharath Thiruveedula63070de2018-08-16 10:08:52 +053053 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
54 name: {{ include "common.name" . }}-readiness
Andreas Geissler47537432024-02-27 08:55:23 +010055 resources:
56 limits:
57 cpu: "100m"
Andreas Geissler8cbb3d92024-03-12 16:44:56 +010058 memory: "500Mi"
Andreas Geissler47537432024-02-27 08:55:23 +010059 requests:
60 cpu: "3m"
Andreas Geissler8cbb3d92024-03-12 16:44:56 +010061 memory: "20Mi"
Mike Elliott6ba69cd2018-04-03 16:37:06 -040062 containers:
63 - name: {{ include "common.name" . }}
Krzysztof Opasiaka9010db2020-02-26 23:36:22 +010064 command:
65 - sh
66 args:
67 - -c
Mahmoud Abdelhamida74326f2021-09-24 17:28:28 +020068 - 'MYSQL_AUTH=${MYSQL_ROOT_USER}:${MYSQL_ROOT_PASSWORD} ./docker-entrypoint.sh'
Sylvain Desbureaux0cd5fee2020-11-19 17:35:56 +010069 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
Mike Elliott6ba69cd2018-04-03 16:37:06 -040070 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
71 ports:
72 - containerPort: {{ .Values.service.internalPort }}
73 # disable liveness probe when breakpoints set in debugger
74 # so K8s doesn't restart unresponsive container
75 {{ if .Values.liveness.enabled }}
76 livenessProbe:
77 tcpSocket:
78 port: {{ .Values.service.internalPort }}
79 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
80 periodSeconds: {{ .Values.liveness.periodSeconds }}
81 {{ end }}
82 readinessProbe:
83 tcpSocket:
84 port: {{ .Values.service.internalPort }}
85 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
86 periodSeconds: {{ .Values.readiness.periodSeconds }}
87 env:
dengyh428f6052020-09-23 15:31:26 +080088 - name: MSB_HOST
AndrewLambce8a39c2022-07-14 12:51:55 +010089 value: "{{ .Values.global.config.msbprotocol }}{{ (eq "true" (include "common.needTLS" .)) | ternary "s" "" }}://{{ .Values.global.config.msbServiceName }}:{{ .Values.global.config.msbPort }}"
90 {{- if and (include "common.needTLS" .) (eq .Values.global.config.ssl_enabled true) }}
yangyanaaeedab2020-02-06 10:27:01 +080091 - name: SSL_ENABLED
AndrewLambce8a39c2022-07-14 12:51:55 +010092 value: "true"
93 {{- else }}
94 - name: SSL_ENABLED
95 value: "false"
96 {{- end }}
Bharath Thiruveedula63070de2018-08-16 10:08:52 +053097 - name: MYSQL_ADDR
Mahmoud Abdelhamida74326f2021-09-24 17:28:28 +020098 value: '{{ include "common.mariadbService" . }}:{{ include "common.mariadbPort" . }}'
Krzysztof Opasiaka9010db2020-02-26 23:36:22 +010099 - name: MYSQL_ROOT_USER
100 value: "{{ .Values.global.config.mariadb_admin }}"
101 - name: MYSQL_ROOT_PASSWORD
Krzysztof Opasiak7977fa62020-03-24 03:28:38 +0100102 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-root-pass" "key" "password") | indent 14}}
dengyh62038bf2020-08-21 16:10:58 +0800103 - name: REDIS_HOST
104 value: "{{ .Values.global.config.redisServiceName }}"
105 - name: REDIS_PORT
106 value: "{{ .Values.global.config.redisPort }}"
yangyan0a90d8d2020-03-11 10:14:42 +0800107 - name: REG_TO_MSB_WHEN_START
108 value: "{{ .Values.global.config.reg_to_msb_when_start }}"
Mike Elliott6ba69cd2018-04-03 16:37:06 -0400109 volumeMounts:
110 - name: {{ include "common.fullname" . }}-localtime
111 mountPath: /etc/localtime
112 readOnly: true
113 - name: {{ include "common.fullname" . }}-logs
Maciej Wereski857687a2021-11-18 16:28:05 +0100114 mountPath: {{ .Values.log.path }}
Mike Elliott6ba69cd2018-04-03 16:37:06 -0400115 - name: {{ include "common.fullname" . }}-logconfig
116 mountPath: /opt/vfc/gvnfm-vnflcm/config/log.yml
117 subPath: log.yml
miroslavmasaryka7ac7f02023-03-01 14:12:26 +0100118 resources: {{ include "common.resources" . | nindent 12 }}
Mike Elliott6ba69cd2018-04-03 16:37:06 -0400119 {{- if .Values.nodeSelector }}
120 nodeSelector:
121{{ toYaml .Values.nodeSelector | indent 10 }}
122 {{- end -}}
123 {{- if .Values.affinity }}
124 affinity:
125{{ toYaml .Values.affinity | indent 10 }}
126 {{- end }}
127
128 # side car containers
Maciej Wereski857687a2021-11-18 16:28:05 +0100129 {{ include "common.log.sidecar" . | nindent 8 }}
Mike Elliott6ba69cd2018-04-03 16:37:06 -0400130 volumes:
131 - name: {{ include "common.fullname" . }}-localtime
132 hostPath:
133 path: /etc/localtime
134 - name: {{ include "common.fullname" . }}-logs
135 emptyDir: {}
136 - name: {{ include "common.fullname" . }}-logconfig
137 configMap:
138 name : {{ include "common.fullname" . }}-logging-configmap
Maciej Wereski857687a2021-11-18 16:28:05 +0100139 {{ include "common.log.volumes" (dict "dot" . "configMapNamePrefix" (tpl .Values.logConfigMapNamePrefix . )) | nindent 8 }}
Mike Elliott6ba69cd2018-04-03 16:37:06 -0400140 imagePullSecrets:
141 - name: "{{ include "common.namespace" . }}-docker-registry-key"