blob: 637347bfc121db05b05408c5b743be1418a73ef8 [file] [log] [blame]
Jakub Latusek50530762020-10-21 13:36:29 +02001{{/*
Sylvain Desbureaux7acab562019-03-01 09:26:13 +01002# Copyright © 2018 Orange
3# Modifications Copyright © 2018 Amdocs, Bell Canada
Steve Alphonse Sianie20fd5e2019-01-25 16:16:29 -05004#
Mike Elliott37cae252018-09-12 14:45:40 -04005# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
Jakub Latusek50530762020-10-21 13:36:29 +020016*/}}
Mike Elliott37cae252018-09-12 14:45:40 -040017
Grzegorz-Lis9bd98782020-07-27 15:22:28 +020018apiVersion: apps/v1
Mike Elliott37cae252018-09-12 14:45:40 -040019kind: Deployment
20metadata:
21 name: {{ include "common.fullname" . }}
22 namespace: {{ include "common.namespace" . }}
23 labels:
24 app: {{ include "common.name" . }}
25 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010026 release: {{ include "common.release" . }}
Mike Elliott37cae252018-09-12 14:45:40 -040027 heritage: {{ .Release.Service }}
28spec:
Grzegorz-Lis9bd98782020-07-27 15:22:28 +020029 selector:
30 matchLabels:
31 app: {{ include "common.name" . }}
Mike Elliott37cae252018-09-12 14:45:40 -040032 replicas: {{ .Values.replicaCount }}
33 template:
34 metadata:
35 labels:
36 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010037 release: {{ include "common.release" . }}
Sylvain Desbureaux7acab562019-03-01 09:26:13 +010038 name: {{ include "common.fullname" . }}
Mike Elliott37cae252018-09-12 14:45:40 -040039 spec:
Sylvain Desbureaux1d7647e2021-02-08 15:29:05 +010040 {{- if .Values.global.aafEnabled }}
41 initContainers: {{ include "common.certInitializer.initContainer" . | nindent 6 }}
42 {{- end }}
Mike Elliott37cae252018-09-12 14:45:40 -040043 containers:
44 - name: {{ include "common.name" . }}
Sylvain Desbureaux503b2292020-11-21 22:29:17 +010045 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
Mike Elliott37cae252018-09-12 14:45:40 -040046 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
47 ports:
Sylvain Desbureaux7acab562019-03-01 09:26:13 +010048 - containerPort: {{ .Values.service.internalPort }}
Mike Elliott37cae252018-09-12 14:45:40 -040049 # disable liveness probe when breakpoints set in debugger
50 # so K8s doesn't restart unresponsive container
51 {{ if .Values.liveness.enabled }}
52 livenessProbe:
53 tcpSocket:
54 port: {{ .Values.service.internalPort }}
55 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
56 periodSeconds: {{ .Values.liveness.periodSeconds }}
57 {{ end }}
Sylvain Desbureaux7acab562019-03-01 09:26:13 +010058 env:
59 - name: HOST
60 value: 0.0.0.0
Nirvan Ramjuttun4603e7e2019-05-30 14:26:27 -040061 - name: APP_ACTION_DEPLOY_BLUEPRINT_GRPC_ENABLED
Timoney, Dan (dt5972)6c656312019-07-11 14:54:28 -040062 value: "{{ .Values.config.app.action.deployBlueprint.grpcEnabled }}"
Nirvan Ramjuttun4603e7e2019-05-30 14:26:27 -040063 - name: API_BLUEPRINT_CONTROLLER_HTTP_BASE_URL
64 value: {{ .Values.config.api.controller.http.baseUrl }}
65 - name: API_BLUEPRINT_CONTROLLER_HTTP_AUTH_TOKEN
66 value: {{ .Values.config.api.controller.http.authToken }}
Oleg Mitsura679b7582019-11-21 12:39:02 -050067 - name: API_BLUEPRINT_PROCESSOR_HTTP_BASE_URL
Nirvan Ramjuttun4603e7e2019-05-30 14:26:27 -040068 value: {{ .Values.config.api.processor.http.baseUrl }}
69 - name: API_BLUEPRINT_PROCESSOR_HTTP_AUTH_TOKEN
70 value: {{ .Values.config.api.processor.http.authToken }}
71 - name: API_BLUEPRINT_PROCESSOR_GRPC_HOST
72 value: {{ .Values.config.api.processor.grpc.host }}
73 - name: API_BLUEPRINT_PROCESSOR_GRPC_PORT
Timoney, Dan (dt5972)6c656312019-07-11 14:54:28 -040074 value: "{{ .Values.config.api.processor.grpc.port }}"
Nirvan Ramjuttun4603e7e2019-05-30 14:26:27 -040075 - name: API_BLUEPRINT_PROCESSOR_GRPC_AUTH_TOKEN
76 value: {{ .Values.config.api.processor.grpc.authToken }}
Sylvain Desbureaux1d7647e2021-02-08 15:29:05 +010077 {{- if .Values.global.aafEnabled }}
78 - name: KEYSTORE
79 value: "{{ .Values.certInitializer.credsPath }}/{{ .Values.certInitializer.fqi_namespace }}.p12"
80 - name: PASSPHRASE
81 value: "{{ .Values.certInitializer.credsPath }}/mycreds.prop"
82 {{- end }}
Mike Elliott37cae252018-09-12 14:45:40 -040083 readinessProbe:
84 tcpSocket:
85 port: {{ .Values.service.internalPort }}
86 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
87 periodSeconds: {{ .Values.readiness.periodSeconds }}
Sylvain Desbureaux1d7647e2021-02-08 15:29:05 +010088 volumeMounts: {{ include "common.certInitializer.volumeMount" . | nindent 12 }}
Sylvain Desbureaux7acab562019-03-01 09:26:13 +010089 - mountPath: /etc/localtime
90 name: localtime
91 readOnly: true
miroslavmasaryka7ac7f02023-03-01 14:12:26 +010092 resources: {{ include "common.resources" . | nindent 12 }}
Mike Elliott37cae252018-09-12 14:45:40 -040093 {{- if .Values.nodeSelector }}
94 nodeSelector:
95{{ toYaml .Values.nodeSelector | indent 10 }}
96 {{- end -}}
97 {{- if .Values.affinity }}
98 affinity:
99{{ toYaml .Values.affinity | indent 10 }}
100 {{- end }}
farida azmyffad0322021-04-09 14:18:14 +0200101 serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
Sylvain Desbureaux1d7647e2021-02-08 15:29:05 +0100102 volumes: {{ include "common.certInitializer.volumes" . | nindent 8 }}
Mike Elliott37cae252018-09-12 14:45:40 -0400103 - name: localtime
104 hostPath:
105 path: /etc/localtime
Mike Elliott37cae252018-09-12 14:45:40 -0400106 imagePullSecrets:
107 - name: "{{ include "common.namespace" . }}-docker-registry-key"