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