summaryrefslogtreecommitdiffstats
path: root/kubernetes/aai/aai-dmaap-deployment.yaml
diff options
context:
space:
mode:
authorMunir Ahmad <munir.ahmad@bell.ca>2017-08-15 15:36:46 -0400
committerMunir Ahmad <munir.ahmad@bell.ca>2017-08-16 10:34:49 -0400
commit0b1332938385cc534b1f034b73f19c145ead87c6 (patch)
tree8c87c6dee4de1efc439e3d48b95e54f8f833d301 /kubernetes/aai/aai-dmaap-deployment.yaml
parentd17accd32f4f7851dbe7b023f1997aa4e17938e8 (diff)
onap 1.1 deployment files work in progress...
issue-id: OOM-66 Change-Id: If6553647343bb07464e8cc8556223f0c7a01f134 Signed-off-by: Munir Ahmad <munir.ahmad@bell.ca>
Diffstat (limited to 'kubernetes/aai/aai-dmaap-deployment.yaml')
-rw-r--r--kubernetes/aai/aai-dmaap-deployment.yaml58
1 files changed, 58 insertions, 0 deletions
diff --git a/kubernetes/aai/aai-dmaap-deployment.yaml b/kubernetes/aai/aai-dmaap-deployment.yaml
new file mode 100644
index 0000000000..1251302380
--- /dev/null
+++ b/kubernetes/aai/aai-dmaap-deployment.yaml
@@ -0,0 +1,58 @@
+apiVersion: extensions/v1beta1
+kind: Deployment
+metadata:
+ name: aai-dmaap
+spec:
+ selector:
+ matchLabels:
+ app: aai-dmaap
+ template:
+ metadata:
+ labels:
+ app: aai-dmaap
+ name: aai-dmaap
+ spec:
+ containers:
+ - env:
+ - name: LANG
+ value: C.UTF-8
+ - name: JAVA_VERSION
+ value: 8u111
+ - name: JAVA_DEBIAN_VERSION
+ value: 8u111-b14-2~bpo8+1
+ - name: CA_CERTIFICATES_JAVA_VERSION
+ value: 20140324
+ - name: PATH
+ value: /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
+ - name: JAVA_HOME
+ value: /usr/lib/jvm/java-8-openjdk-amd64
+ image: nexus3.onap.org:10001/openecomp/dmaap:latest
+ name: aai-dmaap
+ volumeMounts:
+ - mountPath: /appl/dmaapMR1/bundleconfig/etc/appprops/MsgRtrApi.properties
+ name: aai-dmaap-config
+ - mountPath: /opt/message-router/docker_files/mykey
+ name: aai-dmaap-key
+ - mountPath: /opt/message-router/docker_files/cadi.properties
+ name: aai-dmaap-cadi
+ volumes:
+ - name: aai-dmaap-config
+ hostPath:
+ path: /dockerdata/onapdemo/aai/aai-dmaap-config
+ - name: aai-dmaap-key
+ hostPath:
+ path: /dockerdata/onapdemo/aai/aai-dmaap-key
+ - name: aai-dmaap-cadi
+ hostPath:
+ path: /dockerdata/onapdemo/aai/aai-dmaap-cadi
+ ports:
+ - containerPort: 3904
+ - containerPort: 3905
+ readinessProbe:
+ tcpSocket:
+ port: 8080
+ initialDelaySeconds: 5
+ periodSeconds: 10
+ restartPolicy: Always
+ imagePullSecrets:
+ - name: onap-docker-registry-key