diff options
author | Munir Ahmad <munir.ahmad@bell.ca> | 2017-08-15 15:36:46 -0400 |
---|---|---|
committer | Munir Ahmad <munir.ahmad@bell.ca> | 2017-08-16 10:34:49 -0400 |
commit | f305070ed1e50f4ed43d8bf33b7d465c198943b4 (patch) | |
tree | ae3324777b0e882c8d93edfae9c8b9e8f819a702 /aai-resources-deployment.yaml | |
parent | 372640553b90e91a02b02988a7ff6db34a99d632 (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 'aai-resources-deployment.yaml')
-rw-r--r-- | aai-resources-deployment.yaml | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/aai-resources-deployment.yaml b/aai-resources-deployment.yaml new file mode 100644 index 0000000..f2b69c4 --- /dev/null +++ b/aai-resources-deployment.yaml @@ -0,0 +1,51 @@ +apiVersion: extensions/v1beta1 +kind: Deployment +metadata: + name: aai-resources +spec: + selector: + matchLabels: + app: aai-resources + template: + metadata: + labels: + app: aai-resources + name: aai-resources + spec: + containers: + - env: + - name: CHEF_BRANCH + value: master + - name: AAI_CHEF_ENV + value: simpledemo + - name: AAI_CORE_VERSION + value: 1.1.0-SNAPSHOT + - name: AAI_CHEF_LOC + value: /var/chef/aai-data/environments + - name: CHEF_GIT_URL + value: http://gerrit.onap.org/r/aai + - 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 + - name: DEBIAN_FRONTEND + value: noninteractive + image: nexus3.onap.org:10001/openecomp/aai-resources:1.1-STAGING-latest + name: aai-resources + volumeMounts: + - mountPath: /opt/aai/logroot/AAI-RES/ + name: aai-resources + volumes: + - name: aai-resources + hostPath: + path: /dockerdata/onapdemo/aai/aai-resources + ports: + - containerPort: 8447 + readinessProbe: + tcpSocket: + port: 8080 + initialDelaySeconds: 5 + periodSeconds: 10 + restartPolicy: Always + imagePullSecrets: + - name: onap-docker-registry-key |