summaryrefslogtreecommitdiffstats
path: root/templates/aaf-cs-deployment.yaml
diff options
context:
space:
mode:
authorDusan Rozman <dusan.rozman@amdocs.com>2017-09-26 16:04:12 -0400
committerDusan Rozman <dusan.rozman@amdocs.com>2017-09-26 16:04:12 -0400
commit906b67060c1f062816b9baa91d5c9845dad41dab (patch)
tree899e9bc410bc9ef351b534daec01e47e450a1cd4 /templates/aaf-cs-deployment.yaml
Added AAF containers to ONAP Kubernetes
Created the initial deployment yamls for AAF project Issue-ID: OOM-11 Change-Id: I3c60185d78e8ce5596791624086f7cf32b3c3c38 Signed-off-by: Dusan Rozman <dusan.rozman@amdocs.com>
Diffstat (limited to 'templates/aaf-cs-deployment.yaml')
-rw-r--r--templates/aaf-cs-deployment.yaml36
1 files changed, 36 insertions, 0 deletions
diff --git a/templates/aaf-cs-deployment.yaml b/templates/aaf-cs-deployment.yaml
new file mode 100644
index 0000000..f240150
--- /dev/null
+++ b/templates/aaf-cs-deployment.yaml
@@ -0,0 +1,36 @@
+apiVersion: extensions/v1beta1
+kind: Deployment
+metadata:
+ name: aaf-cs
+ namespace: "{{ .Values.nsPrefix }}-aaf"
+spec:
+ replicas: 1
+ selector:
+ matchLabels:
+ app: aaf-cs
+ template:
+ metadata:
+ labels:
+ app: aaf-cs
+ name: aaf-cs
+ spec:
+ hostname: aaf-cs
+ containers:
+ - args:
+ image: {{ .Values.image.csImage }}:{{ .Values.image.csVersion }}
+ imagePullPolicy: {{ .Values.pullPolicy }}
+ name: "aaf-cs"
+ volumeMounts:
+ - mountPath: /data
+ name: aaf-data
+ readinessProbe:
+ tcpSocket:
+ port: 7000
+ initialDelaySeconds: 5
+ periodSeconds: 10
+ volumes:
+ - name: aaf-data
+ hostPath:
+ path: /dockerdata-nfs/{{ .Values.nsPrefix }}/aaf/data
+ imagePullSecrets:
+ - name: {{ .Values.nsPrefix }}-docker-registry-key