blob: e3c58a87e64bf905ceab8e5fe6e0488a0e7940e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
#{{ if not .Values.disableUuiUui }}
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
labels:
app: uui-server
name: uui-server
namespace: "{{ .Values.nsPrefix }}"
spec:
selector:
matchLabels:
app: uui-server
template:
metadata:
labels:
app: uui-server
name: uui-server
spec:
containers:
- image: {{ .Values.uuiserver.image }}:{{ .Values.uuiserver.version }}
imagePullPolicy: {{ .Values.pullPolicy }}
name: uui-server
env:
- name: MSB_ADDR
value: {{tpl .Values.msbaddr .}}
- name: MR_ADDR
value: {{tpl .Values.mraddr .}}
ports:
- containerPort: 8082
readinessProbe:
tcpSocket:
port: 8082
initialDelaySeconds: 5
periodSeconds: 10
imagePullSecrets:
- name: "{{ .Values.nsPrefix }}-docker-registry-key"
#{{ end }}
|