Add VFC containers to ONAP K8S
[oom.git] / kubernetes / vfc / templates / vfc-vnflcm-deployment.yaml
diff --git a/kubernetes/vfc/templates/vfc-vnflcm-deployment.yaml b/kubernetes/vfc/templates/vfc-vnflcm-deployment.yaml
new file mode 100755 (executable)
index 0000000..7d4a900
--- /dev/null
@@ -0,0 +1,34 @@
+apiVersion: extensions/v1beta1
+kind: Deployment
+metadata:
+  name: vfc-vnflcm
+  namespace: "{{ .Values.nsPrefix }}-{{ .Chart.Name }}"
+spec:
+  replicas: {{ .Values.vnflcm.replicas }}
+  selector:
+    matchLabels:
+      app: vfc-vnflcm
+  template:
+    metadata:
+      labels:
+        app: vfc-vnflcm
+      name: vfc-vnflcm
+    spec:
+      hostname: vfc-vnflcm
+      containers:
+      - args:
+        image:  {{.Values.vnflcm.image}}
+        name: "vfc-vnflcm"
+        env:
+        - name: MSB_ADDR
+          value: {{ .Values.msbaddr }}
+        ports:
+        - containerPort: {{ .Values.vnflcm.port }}
+        readinessProbe:
+          tcpSocket:
+            port: {{ .Values.vnflcm.port }}
+          initialDelaySeconds: 5
+          periodSeconds: 10
+        imagePullPolicy: "{{ .Values.pullPolicy }}"
+      imagePullSecrets:
+      - name: "{{ .Values.nsPrefix }}-docker-registry-key"
\ No newline at end of file