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