| apiVersion: extensions/v1beta1 |
| kind: Deployment |
| metadata: |
| labels: |
| app: sdc-be |
| name: sdc-be |
| spec: |
| selector: |
| matchLabels: |
| app: sdc-be |
| template: |
| metadata: |
| labels: |
| app: sdc-be |
| name: sdc-be |
| annotations: |
| pod.beta.kubernetes.io/init-containers: '[ |
| { |
| "args": [ |
| "--container-name", |
| "sdc-es", |
| "--container-name", |
| "sdc-cs", |
| "--container-name", |
| "sdc-kb" |
| ], |
| "command": [ |
| "/root/ready.py" |
| ], |
| "env": [ |
| { |
| "name": "NAMESPACE", |
| "valueFrom": { |
| "fieldRef": { |
| "apiVersion": "v1", |
| "fieldPath": "metadata.namespace" |
| } |
| } |
| } |
| ], |
| "image": "oomk8s/readiness-check:1.0.0", |
| "imagePullPolicy": "Always", |
| "name": "sdc-be-readiness" |
| }, |
| { |
| "args": [ |
| "--container-name", |
| "dmaap" |
| ], |
| "command": [ |
| "/root/ready.py" |
| ], |
| "env": [ |
| { |
| "name": "NAMESPACE", |
| "value": "onap-message-router" |
| } |
| ], |
| "image": "oomk8s/readiness-check:1.0.0", |
| "imagePullPolicy": "Always", |
| "name": "sdc-dmaap-readiness" |
| } |
| ]' |
| spec: |
| containers: |
| - env: |
| - name: ENVNAME |
| value: AUTO |
| - name: HOST_IP |
| valueFrom: |
| fieldRef: |
| fieldPath: status.podIP |
| image: nexus3.onap.org:10001/openecomp/sdc-backend:1.0-STAGING-latest |
| name: sdc-be |
| volumeMounts: |
| - mountPath: /usr/share/elasticsearch/data/ |
| name: sdc-sdc-es-es |
| - mountPath: /root/chef-solo/environments/ |
| name: sdc-environments |
| - mountPath: /var/lib/jetty/etc/keystore |
| name: sdc-jetty-keystore |
| - mountPath: /etc/localtime |
| name: sdc-localtime |
| - mountPath: /var/lib/jetty/logs |
| name: sdc-logs |
| ports: |
| - containerPort: 8443 |
| - containerPort: 8080 |
| readinessProbe: |
| tcpSocket: |
| port: 8443 |
| initialDelaySeconds: 5 |
| periodSeconds: 10 |
| volumes: |
| - name: sdc-sdc-es-es |
| hostPath: |
| path: /dockerdata-nfs/onapdemo/sdc/sdc-es/ES |
| - name: sdc-environments |
| hostPath: |
| path: /dockerdata-nfs/onapdemo/sdc/environments |
| - name: sdc-jetty-keystore |
| hostPath: |
| path: /dockerdata-nfs/onapdemo/sdc/jetty/keystore |
| - name: sdc-localtime |
| hostPath: |
| path: /etc/localtime |
| - name: sdc-logs |
| hostPath: |
| path: /dockerdata-nfs/onapdemo/sdc/logs |
| imagePullSecrets: |
| - name: onap-docker-registry-key |