blob: 7e05d3b6cf060ad9559bd4d7284db11245ef143d [file] [log] [blame]
Sylvain Desbureaux47eb4d22020-12-10 12:15:27 +01001{{/*
Sylvain Desbureaux70070412020-11-09 21:58:48 +01002# Copyright © 2018 Amdocs, AT&T
3# Modifications Copyright © 2018 Bell Canada
Sylvain Desbureaux5b651322020-12-07 15:34:15 +01004# Modifications Copyright © 2020 Orange
Sylvain Desbureaux70070412020-11-09 21:58:48 +01005#
6# Licensed under the Apache License, Version 2.0 (the "License");
7# you may not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS,
14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
Sylvain Desbureaux47eb4d22020-12-10 12:15:27 +010017*/}}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010018
19apiVersion: apps/v1
20kind: Deployment
21metadata:
22 name: {{ include "common.fullname" . }}
23 namespace: {{ include "common.namespace" . }}
24 labels:
25 app: {{ include "common.name" . }}
26 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
27 release: {{ include "common.release" . }}
28 heritage: {{ .Release.Service }}
29spec:
30 replicas: {{ .Values.replicaCount }}
31 selector:
32 matchLabels:
33 app: {{ include "common.name" . }}
34 template:
35 metadata:
36 labels:
37 app: {{ include "common.name" . }}
38 release: {{ include "common.release" . }}
39 name: {{ include "common.name" . }}
40 spec:
41 {{- if .Values.nodeSelector }}
42 nodeSelector:
43{{ toYaml .Values.nodeSelector | indent 8 }}
44 {{- end -}}
45 {{- if .Values.affinity }}
46 affinity:
47{{ toYaml .Values.affinity | indent 8 }}
48 {{- end }}
49 containers:
50 - name: {{ include "common.name" . }}
Sylvain Desbureaux5b651322020-12-07 15:34:15 +010051 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010052 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
53 env:
54 - name: CONFIG_HOME
55 value: /opt/app/model-loader/config/
56 volumeMounts:
57 - mountPath: /etc/localtime
58 name: localtime
59 readOnly: true
60 - mountPath: /opt/app/model-loader/config/model-loader.properties
61 subPath: model-loader.properties
62 name: {{ include "common.fullname" . }}-prop-config
63 - mountPath: /opt/app/model-loader/config/auth/
64 name: {{ include "common.fullname" . }}-auth-config
Maciej Wereskid523d122021-09-21 11:22:13 +020065 - mountPath: {{ .Values.log.path }}
66 name: logs
Sylvain Desbureaux70070412020-11-09 21:58:48 +010067 - mountPath: /opt/app/model-loader/logback.xml
68 name: {{ include "common.fullname" . }}-log-conf
69 subPath: logback.xml
70 ports:
71 - containerPort: {{ .Values.service.internalPort }}
72 - containerPort: {{ .Values.service.internalPort2 }}
73 resources:
74{{ include "common.resources" . }}
75
76 # side car containers
Maciej Wereskid523d122021-09-21 11:22:13 +020077 {{ include "common.log.sidecar" . | nindent 6 }}
farida azmyd8937332021-03-09 12:20:42 +020078 serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010079 volumes:
80 - name: localtime
81 hostPath:
82 path: /etc/localtime
83 - name: {{ include "common.fullname" . }}-prop-config
84 configMap:
85 name: {{ include "common.fullname" . }}-prop
86 - name: {{ include "common.fullname" . }}-auth-config
87 secret:
88 secretName: {{ include "common.fullname" . }}
Maciej Wereskid523d122021-09-21 11:22:13 +020089 - name: logs
Sylvain Desbureaux70070412020-11-09 21:58:48 +010090 emptyDir: {}
Maciej Wereskid523d122021-09-21 11:22:13 +020091 {{ include "common.log.volumes" (dict "dot" . "configMapNamePrefix" (tpl .Values.logConfigMapNamePrefix .)) | nindent 6 }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010092 - name: {{ include "common.fullname" . }}-log-conf
93 configMap:
Sylvain Desbureaux5b651322020-12-07 15:34:15 +010094 name: {{ include "common.fullname" . }}-log
Sylvain Desbureaux70070412020-11-09 21:58:48 +010095 restartPolicy: {{ .Values.global.restartPolicy | default .Values.restartPolicy }}
96 imagePullSecrets:
97 - name: "{{ include "common.namespace" . }}-docker-registry-key"