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