blob: db7ac1a9da955f2172dd4d0342141fbcfe9cd395 [file] [log] [blame]
yurynfcef9942017-10-26 17:10:50 +03001#{{ if not .Values.disableUuiUui }}
Dusan Rozman03aa27e2017-10-11 13:04:23 -04002apiVersion: extensions/v1beta1
3kind: Deployment
4metadata:
5 labels:
6 app: uui
7 name: uui
8 namespace: "{{ .Values.nsPrefix }}-uui"
9spec:
10 selector:
11 matchLabels:
12 app: uui
13 template:
14 metadata:
15 labels:
16 app: uui
17 name: uui
18 spec:
19 containers:
20 - image: {{ .Values.image.uuiImage }}:{{ .Values.image.uuiVersion }}
21 imagePullPolicy: {{ .Values.pullPolicy }}
22 command:
23 - /bin/bash
24 - -c
25 - /home/uui/tomcat/bin/catalina.sh run
26 name: uui
Alexis de Talhouƫtfc979992017-11-28 15:47:31 -050027 env:
28 - name: MSB_ADDR
29 value: {{ .Values.msbaddr }}
Dusan Rozman03aa27e2017-10-11 13:04:23 -040030 ports:
31 - containerPort: 8080
32 readinessProbe:
33 tcpSocket:
34 port: 8080
35 initialDelaySeconds: 5
36 periodSeconds: 10
37 imagePullSecrets:
38 - name: "{{ .Values.nsPrefix }}-docker-registry-key"
yurynfcef9942017-10-26 17:10:50 +030039#{{ end }}