summaryrefslogtreecommitdiffstats
path: root/samples/scenarios/clearwater_ims/yaml/homestead-prov-depl.yaml
blob: 18b47eafe8d5f584e147ddeec789b86364715a4e (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
40
41
42
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
  name: homestead-prov
  labels:
    app: homestead-prov
spec:
  replicas: 1
  selector:
    matchLabels:
      service: homestead-prov
  template:
    metadata:
      labels:
        app: homestead-prov
        service: homestead-prov
        snmp: enabled
    spec:
      containers:
      #- image: "localhost:5000/homestead-prov:clearwater/base:latest"
      - image: "instance-1:5000/clearwater/homestead-prov:latest"
        imagePullPolicy: Always
        name: homestead-prov
        ports:
        - containerPort: 22
        - containerPort: 8889
        envFrom:
        - configMapRef:
              name: env-vars
        env:
        - name: MY_POD_IP
          valueFrom:
            fieldRef:
              fieldPath: status.podIP
        livenessProbe:
          exec:
            command: ["/bin/bash", "/usr/share/clearwater/bin/poll_homestead-prov.sh"]
          initialDelaySeconds: 60
        readinessProbe:
          exec:
            command: ["/bin/bash", "/usr/share/clearwater/bin/poll_homestead-prov.sh"]
      restartPolicy: Always