Add VFC containers to ONAP K8S
[oom.git] / kubernetes / vfc / templates / vfc-vnflcm-deployment.yaml
1 apiVersion: extensions/v1beta1
2 kind: Deployment
3 metadata:
4   name: vfc-vnflcm
5   namespace: "{{ .Values.nsPrefix }}-{{ .Chart.Name }}"
6 spec:
7   replicas: {{ .Values.vnflcm.replicas }}
8   selector:
9     matchLabels:
10       app: vfc-vnflcm
11   template:
12     metadata:
13       labels:
14         app: vfc-vnflcm
15       name: vfc-vnflcm
16     spec:
17       hostname: vfc-vnflcm
18       containers:
19       - args:
20         image:  {{.Values.vnflcm.image}}
21         name: "vfc-vnflcm"
22         env:
23         - name: MSB_ADDR
24           value: {{ .Values.msbaddr }}
25         ports:
26         - containerPort: {{ .Values.vnflcm.port }}
27         readinessProbe:
28           tcpSocket:
29             port: {{ .Values.vnflcm.port }}
30           initialDelaySeconds: 5
31           periodSeconds: 10
32         imagePullPolicy: "{{ .Values.pullPolicy }}"
33       imagePullSecrets:
34       - name: "{{ .Values.nsPrefix }}-docker-registry-key"