diff options
author | Stephen Wong <stephen.kf.wong@gmail.com> | 2018-08-01 05:16:00 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2018-08-01 05:16:00 +0000 |
commit | 0e1b4692617be69ea4372c89f653f44170942998 (patch) | |
tree | e1122b29c66a1f187cd30d4e17f9f301fcec2891 /samples/scenarios/clearwater_ims/yaml/homestead-prov-depl.yaml | |
parent | d93a37039cdcbcd018787016950bd39e020bd9ba (diff) | |
parent | a9a792e18c5c985874440781ca2cb5c23105d54a (diff) |
Merge "Adding clearwater IMS yaml and clearwater live test dockerfile to test istio service-mesh"
Diffstat (limited to 'samples/scenarios/clearwater_ims/yaml/homestead-prov-depl.yaml')
-rw-r--r-- | samples/scenarios/clearwater_ims/yaml/homestead-prov-depl.yaml | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/samples/scenarios/clearwater_ims/yaml/homestead-prov-depl.yaml b/samples/scenarios/clearwater_ims/yaml/homestead-prov-depl.yaml new file mode 100644 index 0000000..18b47ea --- /dev/null +++ b/samples/scenarios/clearwater_ims/yaml/homestead-prov-depl.yaml @@ -0,0 +1,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 |