blob: d03b67bc79e51df156ffa6b9436df6bb62671b80 [file] [log] [blame]
Jakub Latusekbe896842020-10-21 13:36:29 +02001{{/*
Prateekinlinux445a18e2018-08-01 06:48:33 +00002# Copyright © 2018 Amdocs, Bell Canada , ZTE
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 Latusekbe896842020-10-21 13:36:29 +020015*/}}
Grzegorz-Lis055b6ce2020-07-23 10:03:54 +020016apiVersion: apps/v1
BorislavG0433c912018-03-21 18:35:30 +020017kind: 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" . }}
BorislavG0433c912018-03-21 18:35:30 +020025 heritage: {{ .Release.Service }}
26spec:
Grzegorz-Lis055b6ce2020-07-23 10:03:54 +020027 selector:
28 matchLabels:
29 app: {{ include "common.name" . }}
BorislavG0433c912018-03-21 18:35:30 +020030 replicas: {{ .Values.replicaCount }}
31 template:
32 metadata:
33 labels:
34 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010035 release: {{ include "common.release" . }}
Huabing Zhao408a87d2018-08-03 06:35:41 +000036 annotations:
37 sidecar.istio.io/inject: "{{.Values.istioSidecar}}"
BorislavG0433c912018-03-21 18:35:30 +020038 spec:
Huabing Zhao8f7cc812018-08-08 06:27:37 +000039 serviceAccountName: msb
BorislavG0433c912018-03-21 18:35:30 +020040 initContainers:
41 - command:
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020042 - /app/ready.py
BorislavG0433c912018-03-21 18:35:30 +020043 args:
44 - --container-name
45 - msb-discovery
46 env:
47 - name: NAMESPACE
48 valueFrom:
49 fieldRef:
50 apiVersion: v1
51 fieldPath: metadata.namespace
Sylvain Desbureauxfd2f8b82020-11-21 22:50:06 +010052 image: {{ include "repositoryGenerator.image.readiness" . }}
BorislavG0433c912018-03-21 18:35:30 +020053 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
54 name: {{ include "common.name" . }}-readiness
55 containers:
56 - name: {{ include "common.name" . }}
Sylvain Desbureauxfd2f8b82020-11-21 22:50:06 +010057 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
BorislavG0433c912018-03-21 18:35:30 +020058 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
59 env:
60 - name: KUBE_MASTER_URL
61 value: {{ .Values.config.kubeMasterUrl }}
62 - name: MSB_URL
63 value: {{tpl $.Values.config.discoveryUrl .}}
64 volumeMounts:
65 - mountPath: /etc/localtime
66 name: localtime
67 readOnly: true
miroslavmasaryka7ac7f02023-03-01 14:12:26 +010068 resources: {{ include "common.resources" . | nindent 12 }}
BorislavG0433c912018-03-21 18:35:30 +020069 {{- if .Values.nodeSelector }}
70 nodeSelector:
71{{ toYaml .Values.nodeSelector | indent 10 }}
72 {{- end -}}
73 {{- if .Values.affinity }}
74 affinity:
75{{ toYaml .Values.affinity | indent 10 }}
76 {{- end }}
77 volumes:
78 - name: localtime
79 hostPath:
80 path: /etc/localtime
81 imagePullSecrets:
82 - name: "{{ include "common.namespace" . }}-docker-registry-key"