aboutsummaryrefslogtreecommitdiffstats
path: root/functest_kubernetes/ims/ellis-depl.yaml
blob: 694c813af0204a88c4dfa0e81e847749bbf9765c (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
38
39
apiVersion: apps/v1
kind: Deployment
metadata:
  name: ellis
spec:
  replicas: 1
  selector:
    matchLabels:
      service: ellis
  template:
    metadata:
      labels:
        service: ellis
    spec:
      containers:
      - image: "ollivier/clearwater-ellis:latest"
        imagePullPolicy: Always
        name: ellis
        ports:
        - containerPort: 22
        - containerPort: 80
        envFrom:
        - configMapRef:
              name: env-vars
        env:
        - name: MY_POD_IP
          valueFrom:
            fieldRef:
              fieldPath: status.podIP
        livenessProbe:
          tcpSocket:
            port: 80
          initialDelaySeconds: 30
        readinessProbe:
          tcpSocket:
            port: 80
      imagePullSecrets:
      - name: ~
      restartPolicy: Always