summaryrefslogtreecommitdiffstats
path: root/kubernetes/uui/templates/uui-deployment.yaml
blob: e23202a907f57fadd6e2d42f893f465ea402f40c (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
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
  labels:
    app: uui
  name: uui
  namespace: "{{ .Values.nsPrefix }}-uui"
spec:
  selector:
    matchLabels:
      app: uui
  template:
    metadata:
      labels:
        app: uui
      name: uui
    spec:
      containers:
      - image: {{ .Values.image.uuiImage }}:{{ .Values.image.uuiVersion }}
        imagePullPolicy: {{ .Values.pullPolicy }}
        command:
          - /bin/bash
          - -c
          - /home/uui/tomcat/bin/catalina.sh run
        name: uui
        ports:
        - containerPort: 8080
        readinessProbe:
          tcpSocket:
            port: 8080
          initialDelaySeconds: 5
          periodSeconds: 10
      imagePullSecrets:
      - name: "{{ .Values.nsPrefix }}-docker-registry-key"