Merge "[AAI] Add model-loader tracing config"
[oom.git] / kubernetes / uui / templates / deployment.yaml
1 {{/*
2 # 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.
15 */}}
16
17 apiVersion: apps/v1
18 kind: Deployment
19 metadata: {{- include "common.resourceMetadata" . | nindent 2 }}
20 spec:
21   selector: {{- include "common.selectors" . | nindent 4 }}
22   replicas: {{ .Values.replicaCount }}
23   template:
24     metadata: {{- include "common.templateMetadata" . | nindent 6 }}
25     spec:
26       initContainers:
27       - command:
28         - sh
29         args:
30         - -c
31         - |
32           cd /config-input && for PFILE in `ls -1`
33           do
34             envsubst <${PFILE} >/config/${PFILE}
35           done
36           cat /config/server.xml
37         volumeMounts:
38         - 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
45       containers:
46         - name: {{ include "common.name" . }}
47           image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
48           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
49           command:
50             - /bin/bash
51             - -c
52             - |
53               echo "*** /opt"
54               ls -lh /opt/
55               echo "*** /opt/app"
56               ls -lh /opt/app/
57               /home/uui/uuiStartup.sh
58           ports: {{ include "common.containerPorts" . | nindent 10  }}
59           # 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 }}
73           volumeMounts:
74           - mountPath: /home/uui/server.xml
75             name: config
76             subPath: server.xml
77           - mountPath: /home/uui/web.xml
78             name: config
79             subPath: web.xml
80           env:
81           - name: MSB_ADDR
82             value: {{ tpl .Values.msbaddr . }}
83           resources: {{ include "common.resources" . | nindent 12 }}
84         {{- if .Values.nodeSelector }}
85         nodeSelector: {{ toYaml .Values.nodeSelector | nindent 10 }}
86         {{- end }}
87         {{- if .Values.affinity }}
88         affinity: {{ toYaml .Values.affinity | nindent 10 }}
89         {{- end }}
90       volumes:
91       - name: config-input
92         configMap:
93           name: {{ include "common.fullname" . }}
94       - name: config
95         emptyDir:
96           medium: Memory
97       {{- include "common.imagePullSecrets" . | nindent 6 }}