summaryrefslogtreecommitdiffstats
path: root/src/helm-charts/clearwater/templates/homestead-prov-depl.yaml
diff options
context:
space:
mode:
authorXuan Jia <jason.jiaxuan@gmail.com>2018-02-23 06:32:44 +0000
committerGerrit Code Review <gerrit@opnfv.org>2018-02-23 06:32:44 +0000
commite57ff7528f45427f6cf9c1d88b66989a8122d61c (patch)
tree3f0986f00bf8ba8f900509b0890855f5c7af8431 /src/helm-charts/clearwater/templates/homestead-prov-depl.yaml
parent11f967b8e1caec6c2b0e8bbe35b2525e30ae9615 (diff)
parent3e6b79e26a01a4b457b005cf77c1df3f5a50b934 (diff)
Merge "Clearwater Helm Chart"
Diffstat (limited to 'src/helm-charts/clearwater/templates/homestead-prov-depl.yaml')
-rw-r--r--src/helm-charts/clearwater/templates/homestead-prov-depl.yaml38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/helm-charts/clearwater/templates/homestead-prov-depl.yaml b/src/helm-charts/clearwater/templates/homestead-prov-depl.yaml
new file mode 100644
index 0000000..5532b12
--- /dev/null
+++ b/src/helm-charts/clearwater/templates/homestead-prov-depl.yaml
@@ -0,0 +1,38 @@
+apiVersion: extensions/v1beta1
+kind: Deployment
+metadata:
+ name: homestead-prov
+spec:
+ replicas: 1
+ selector:
+ matchLabels:
+ service: homestead-prov
+ template:
+ metadata:
+ labels:
+ service: homestead-prov
+ snmp: enabled
+ spec:
+ containers:
+ - image: "{{ .Values.image.path }}/homestead-prov:{{ .Values.image.tag }}"
+ imagePullPolicy: Always
+ name: homestead-prov
+ ports:
+ - containerPort: 22
+ - containerPort: 8889
+ envFrom:
+ - configMapRef:
+ name: {{ .Values.config.configmaps }}
+ 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