summaryrefslogtreecommitdiffstats
path: root/kubernetes/aaf/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
commit7704d2a216f6d1adf9f782bbe4ff277169f2a490 (patch)
tree6fd785b4126f916cdc0dd807897973e28ed2b581 /kubernetes/aaf/templates/aaf-cs-deployment.yaml
parent31cca0e7a632addb6e1d5833e9d514ad6396abb2 (diff)
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 'kubernetes/aaf/templates/aaf-cs-deployment.yaml')
-rw-r--r--kubernetes/aaf/templates/aaf-cs-deployment.yaml36
1 files changed, 36 insertions, 0 deletions
diff --git a/kubernetes/aaf/templates/aaf-cs-deployment.yaml b/kubernetes/aaf/templates/aaf-cs-deployment.yaml
new file mode 100644
index 0000000000..f240150f96
--- /dev/null
+++ b/kubernetes/aaf/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