blob: 61b0b2d9fa16d8f5b00abdb3e74c35632f85f62d [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
Andreas Geissler22f3b162023-02-07 13:10:01 +010019metadata: {{- include "common.resourceMetadata" . | nindent 2 }}
vaibhav_16dec14d51612018-03-28 07:48:35 +000020spec:
Andreas Geissler22f3b162023-02-07 13:10:01 +010021 selector: {{- include "common.selectors" . | nindent 4 }}
vaibhav_16dec14d51612018-03-28 07:48:35 +000022 replicas: {{ .Values.replicaCount }}
23 template:
Andreas Geissler22f3b162023-02-07 13:10:01 +010024 metadata: {{- include "common.templateMetadata" . | nindent 6 }}
vaibhav_16dec14d51612018-03-28 07:48:35 +000025 spec:
Andreas Geisslerc20e4dc2023-03-20 17:56:12 +010026 initContainers:
Sylvain Desbureauxe6a1a372021-02-25 18:07:55 +010027 - command:
28 - sh
29 args:
30 - -c
31 - |
Sylvain Desbureauxe6a1a372021-02-25 18:07:55 +010032 cd /config-input && for PFILE in `ls -1`
33 do
34 envsubst <${PFILE} >/config/${PFILE}
35 done
36 cat /config/server.xml
Andreas Geisslerc20e4dc2023-03-20 17:56:12 +010037 volumeMounts:
Sylvain Desbureauxe6a1a372021-02-25 18:07:55 +010038 - mountPath: /config-input
39 name: config-input
40 - mountPath: /config
41 name: config
42 image: {{ include "repositoryGenerator.image.envsubst" . }}
43 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
44 name: {{ include "common.name" . }}-update-config
vaibhav_16dec14d51612018-03-28 07:48:35 +000045 containers:
46 - name: {{ include "common.name" . }}
Sylvain Desbureaux666bedf2020-11-19 17:38:23 +010047 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
vaibhav_16dec14d51612018-03-28 07:48:35 +000048 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
49 command:
50 - /bin/bash
51 - -c
Sylvain Desbureauxe6a1a372021-02-25 18:07:55 +010052 - |
53 echo "*** /opt"
54 ls -lh /opt/
55 echo "*** /opt/app"
56 ls -lh /opt/app/
Sylvain Desbureauxe6a1a372021-02-25 18:07:55 +010057 /home/uui/uuiStartup.sh
Andreas Geissler22f3b162023-02-07 13:10:01 +010058 ports: {{ include "common.containerPorts" . | nindent 10 }}
vaibhav_16dec14d51612018-03-28 07:48:35 +000059 # disable liveness probe when breakpoints set in debugger
60 # so K8s doesn't restart unresponsive container
61 {{- if eq .Values.liveness.enabled true }}
62 livenessProbe:
63 tcpSocket:
64 port: {{ .Values.service.internalPort }}
65 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
66 periodSeconds: {{ .Values.liveness.periodSeconds }}
67 {{ end -}}
68 readinessProbe:
69 tcpSocket:
70 port: {{ .Values.service.internalPort }}
71 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
72 periodSeconds: {{ .Values.readiness.periodSeconds }}
Andreas Geisslerc20e4dc2023-03-20 17:56:12 +010073 volumeMounts:
Sylvain Desbureauxe6a1a372021-02-25 18:07:55 +010074 - mountPath: /home/uui/server.xml
75 name: config
76 subPath: server.xml
Andreas Geissler22f3b162023-02-07 13:10:01 +010077 - mountPath: /home/uui/web.xml
78 name: config
79 subPath: web.xml
vaibhav_16dec14d51612018-03-28 07:48:35 +000080 env:
81 - name: MSB_ADDR
82 value: {{ tpl .Values.msbaddr . }}
Sylvain Desbureauxe6a1a372021-02-25 18:07:55 +010083 resources: {{ include "common.resources" . | nindent 12 }}
vaibhav_16dec14d51612018-03-28 07:48:35 +000084 {{- if .Values.nodeSelector }}
Sylvain Desbureauxe6a1a372021-02-25 18:07:55 +010085 nodeSelector: {{ toYaml .Values.nodeSelector | nindent 10 }}
vaibhav_16dec14d51612018-03-28 07:48:35 +000086 {{- end }}
Sylvain Desbureauxe6a1a372021-02-25 18:07:55 +010087 {{- if .Values.affinity }}
88 affinity: {{ toYaml .Values.affinity | nindent 10 }}
89 {{- end }}
Andreas Geisslerc20e4dc2023-03-20 17:56:12 +010090 volumes:
Sylvain Desbureauxe6a1a372021-02-25 18:07:55 +010091 - name: config-input
92 configMap:
93 name: {{ include "common.fullname" . }}
94 - name: config
95 emptyDir:
96 medium: Memory
vaibhav_16dec14d51612018-03-28 07:48:35 +000097 imagePullSecrets:
98 - name: "{{ include "common.namespace" . }}-docker-registry-key"