blob: 41d33b194e23932d1e7c82c44a9bc8bbb4405d7a [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
27 ports:
28 - containerPort: 8080
29 readinessProbe:
30 tcpSocket:
31 port: 8080
32 initialDelaySeconds: 5
33 periodSeconds: 10
34 imagePullSecrets:
35 - name: "{{ .Values.nsPrefix }}-docker-registry-key"
yurynfcef9942017-10-26 17:10:50 +030036#{{ end }}