blob: 5d8c7b32b5b68acf097dfa9c80deab6a8546bf33 [file] [log] [blame]
Jakub Latuseka0b0d972020-10-21 13:36:30 +02001{{/*
vaibhav_16dec14d51612018-03-28 07:48:35 +00002# 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 Latuseka0b0d972020-10-21 13:36:30 +020015*/}}
vaibhav_16dec14d51612018-03-28 07:48:35 +000016
Grzegorz-Lisb5717032020-07-28 09:57:43 +020017apiVersion: apps/v1
vaibhav_16dec14d51612018-03-28 07:48:35 +000018kind: 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" . }}
vaibhav_16dec14d51612018-03-28 07:48:35 +000026 heritage: {{ .Release.Service }}
27spec:
Grzegorz-Lisb5717032020-07-28 09:57:43 +020028 selector:
29 matchLabels:
30 app: {{ include "common.name" . }}
vaibhav_16dec14d51612018-03-28 07:48:35 +000031 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" . }}
vaibhav_16dec14d51612018-03-28 07:48:35 +000037 spec:
Sylvain Desbureauxe6a1a372021-02-25 18:07:55 +010038 {{- if .Values.global.aafEnabled }}
39 initContainers: {{ include "common.certInitializer.initContainer" . | nindent 6 }}
40 - command:
41 - sh
42 args:
43 - -c
44 - |
45 export $(cat {{ .Values.certInitializer.credsPath }}/mycreds.prop | xargs -0)
46 cd /config-input && for PFILE in `ls -1`
47 do
48 envsubst <${PFILE} >/config/${PFILE}
49 done
50 cat /config/server.xml
51 volumeMounts: {{ include "common.certInitializer.volumeMount" . | nindent 8 }}
52 - mountPath: /config-input
53 name: config-input
54 - mountPath: /config
55 name: config
56 image: {{ include "repositoryGenerator.image.envsubst" . }}
57 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
58 name: {{ include "common.name" . }}-update-config
59 {{- end }}
vaibhav_16dec14d51612018-03-28 07:48:35 +000060 containers:
61 - name: {{ include "common.name" . }}
Sylvain Desbureaux666bedf2020-11-19 17:38:23 +010062 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
vaibhav_16dec14d51612018-03-28 07:48:35 +000063 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
64 command:
65 - /bin/bash
66 - -c
Sylvain Desbureauxe6a1a372021-02-25 18:07:55 +010067 - |
68 echo "*** /opt"
69 ls -lh /opt/
70 echo "*** /opt/app"
71 ls -lh /opt/app/
72 echo "*** /opt/app/osaaf/"
73 ls -lh /opt/app/osaaf/
74 echo "*** /opt/app/osaaf/local"
75 ls -lh /opt/app/osaaf/local/
76 /home/uui/uuiStartup.sh
vaibhav_16dec14d51612018-03-28 07:48:35 +000077 ports:
78 - containerPort: {{ .Values.service.internalPort }}
79 # disable liveness probe when breakpoints set in debugger
80 # so K8s doesn't restart unresponsive container
81 {{- if eq .Values.liveness.enabled true }}
82 livenessProbe:
83 tcpSocket:
84 port: {{ .Values.service.internalPort }}
85 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
86 periodSeconds: {{ .Values.liveness.periodSeconds }}
87 {{ end -}}
88 readinessProbe:
89 tcpSocket:
90 port: {{ .Values.service.internalPort }}
91 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
92 periodSeconds: {{ .Values.readiness.periodSeconds }}
Sylvain Desbureauxe6a1a372021-02-25 18:07:55 +010093 {{- if .Values.global.aafEnabled }}
94 volumeMounts: {{ include "common.certInitializer.volumeMount" . | nindent 10 }}
95 - mountPath: /home/uui/server.xml
96 name: config
97 subPath: server.xml
98 {{- end }}
vaibhav_16dec14d51612018-03-28 07:48:35 +000099 env:
100 - name: MSB_ADDR
101 value: {{ tpl .Values.msbaddr . }}
Sylvain Desbureauxe6a1a372021-02-25 18:07:55 +0100102 resources: {{ include "common.resources" . | nindent 12 }}
vaibhav_16dec14d51612018-03-28 07:48:35 +0000103 {{- if .Values.nodeSelector }}
Sylvain Desbureauxe6a1a372021-02-25 18:07:55 +0100104 nodeSelector: {{ toYaml .Values.nodeSelector | nindent 10 }}
vaibhav_16dec14d51612018-03-28 07:48:35 +0000105 {{- end }}
Sylvain Desbureauxe6a1a372021-02-25 18:07:55 +0100106 {{- if .Values.affinity }}
107 affinity: {{ toYaml .Values.affinity | nindent 10 }}
108 {{- end }}
109 {{- if .Values.global.aafEnabled }}
110 volumes: {{ include "common.certInitializer.volumes" . | nindent 6 }}
111 - name: config-input
112 configMap:
113 name: {{ include "common.fullname" . }}
114 - name: config
115 emptyDir:
116 medium: Memory
117 {{- end }}
vaibhav_16dec14d51612018-03-28 07:48:35 +0000118 imagePullSecrets:
119 - name: "{{ include "common.namespace" . }}-docker-registry-key"