diff options
author | Muhammad Shaikh (Salman) <muhammad.shaikh@huawei.com> | 2018-05-30 00:41:19 +0000 |
---|---|---|
committer | Muhammad Shaikh (Salman) <muhammad.shaikh@huawei.com> | 2018-05-30 00:55:03 +0000 |
commit | a9a792e18c5c985874440781ca2cb5c23105d54a (patch) | |
tree | 36c4103a194cb25783b435cc486b82e1fcbee396 /samples/scenarios/clearwater_ims/yaml/homestead-depl.yaml | |
parent | a611041d138a71a87c12d4734e5d1a780852ecc9 (diff) |
Adding clearwater IMS yaml and clearwater live test dockerfile to test istio service-mesh
Checking into CLEARWATER_ISTIO branch
This part of the project is intended to validate the clearwater IMS with istio service-mesh.
Change-Id: Ia5ba86301a363fcf9cfe0bac525606b0d897713e
Signed-off-by: Muhammad Shaikh (Salman) <muhammad.shaikh@huawei.com>
Diffstat (limited to 'samples/scenarios/clearwater_ims/yaml/homestead-depl.yaml')
-rw-r--r-- | samples/scenarios/clearwater_ims/yaml/homestead-depl.yaml | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/samples/scenarios/clearwater_ims/yaml/homestead-depl.yaml b/samples/scenarios/clearwater_ims/yaml/homestead-depl.yaml new file mode 100644 index 0000000..c30bac0 --- /dev/null +++ b/samples/scenarios/clearwater_ims/yaml/homestead-depl.yaml @@ -0,0 +1,54 @@ +apiVersion: extensions/v1beta1 +kind: Deployment +metadata: + name: homestead + labels: + app: homestead +spec: + replicas: 1 + selector: + matchLabels: + service: homestead + template: + metadata: + labels: + app: homestead + service: homestead + snmp: enabled + spec: + containers: + #- image: "localhost:5000/homestead:clearwater/base:latest" + - image: "instance-1:5000/clearwater/homestead:latest" + imagePullPolicy: Always + name: homestead + ports: + - containerPort: 22 + - containerPort: 8888 + envFrom: + - configMapRef: + name: env-vars + env: + - name: MY_POD_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + livenessProbe: + exec: + command: ["/bin/bash", "/usr/share/kubernetes/liveness.sh", "8888"] + initialDelaySeconds: 60 + readinessProbe: + exec: + command: ["/bin/bash", "/usr/share/kubernetes/liveness.sh", "8888"] + volumeMounts: + - name: homesteadlogs + mountPath: /var/log/homestead + - image: busybox + name: tailer + command: [ "tail", "-F", "/var/log/homestead/homestead_current.txt" ] + volumeMounts: + - name: homesteadlogs + mountPath: /var/log/homestead + volumes: + - name: homesteadlogs + emptyDir: {} + restartPolicy: Always |