| apiVersion: extensions/v1beta1 |
| kind: Deployment |
| metadata: |
| labels: |
| app: vnc-portal |
| name: vnc-portal |
| namespace: "{{ .Values.nsPrefix }}-portal" |
| spec: |
| selector: |
| matchLabels: |
| app: vnc-portal |
| template: |
| metadata: |
| labels: |
| app: vnc-portal |
| name: vnc-portal |
| annotations: |
| pod.beta.kubernetes.io/init-containers: '[ |
| { |
| "args": [ |
| "--container-name", |
| "portalapps" |
| ], |
| "command": [ |
| "/root/ready.py" |
| ], |
| "env": [ |
| { |
| "name": "NAMESPACE", |
| "valueFrom": { |
| "fieldRef": { |
| "apiVersion": "v1", |
| "fieldPath": "metadata.namespace" |
| } |
| } |
| } |
| ], |
| "image": "{{ .Values.image.readiness }}", |
| "imagePullPolicy": "{{ .Values.pullPolicy }}", |
| "name": "vnc-portal-readiness" |
| }, |
| { |
| "args": [ |
| "--container-name", |
| "pap" |
| ], |
| "command": [ |
| "/root/ready.py" |
| ], |
| "env": [ |
| { |
| "name": "NAMESPACE", |
| "value": "{{ .Values.nsPrefix }}-policy" |
| } |
| ], |
| "image": "{{ .Values.image.readiness }}", |
| "imagePullPolicy": "{{ .Values.pullPolicy }}", |
| "name": "vnc-pap-readiness" |
| }, |
| { |
| "args": [ |
| "--container-name", |
| "sdc-fe" |
| ], |
| "command": [ |
| "/root/ready.py" |
| ], |
| "env": [ |
| { |
| "name": "NAMESPACE", |
| "value": "{{ .Values.nsPrefix }}-sdc" |
| } |
| ], |
| "image": "{{ .Values.image.readiness }}", |
| "imagePullPolicy": "{{ .Values.pullPolicy }}", |
| "name": "vnc-sdc-readiness" |
| }, |
| { |
| "args": [ |
| "--container-name", |
| "vid-server" |
| ], |
| "command": [ |
| "/root/ready.py" |
| ], |
| "env": [ |
| { |
| "name": "NAMESPACE", |
| "value": "{{ .Values.nsPrefix }}-vid" |
| } |
| ], |
| "image": "{{ .Values.image.readiness }}", |
| "imagePullPolicy": "{{ .Values.pullPolicy }}", |
| "name": "vnc-vid-readiness" |
| }, |
| { |
| "command": ["/bin/sh","-c"], |
| "args": ["echo `host sdc-be.{{ .Values.nsPrefix }}-sdc | awk ''{print$4}''` sdc.api.be.simpledemo.openecomp.org >> /ubuntu-init/hosts; echo `host portalapps.{{ .Values.nsPrefix }}-portal | awk ''{print$4}''` portal.api.simpledemo.openecomp.org >> /ubuntu-init/hosts; echo `host pap.{{ .Values.nsPrefix }}-policy | awk ''{print$4}''` policy.api.simpledemo.openecomp.org >> /ubuntu-init/hosts; echo `host sdc-fe.{{ .Values.nsPrefix }}-sdc | awk ''{print$4}''` sdc.ui.simpledemo.openecomp.org >> /ubuntu-init/hosts; echo `host vid-server.{{ .Values.nsPrefix }}-vid | awk ''{print$4}''` vid.api.simpledemo.openecomp.org >> /ubuntu-init/hosts; echo `host sparky-be.{{ .Values.nsPrefix }}-aai | awk ''{print$4}''` aai.api.simpledemo.openecomp.org >> /ubuntu-init/hosts"], |
| "image": "{{ .Values.image.ubuntuInit }}", |
| "imagePullPolicy": "{{ .Values.pullPolicy }}", |
| "name": "vnc-init-hosts", |
| "volumeMounts": [ |
| { |
| "name": "ubuntu-init", |
| "mountPath": "/ubuntu-init/" |
| } |
| ] |
| } |
| ]' |
| spec: |
| containers: |
| - image: {{ .Values.image.ubuntuDesktop }} |
| imagePullPolicy: {{ .Values.pullPolicy }} |
| lifecycle: |
| postStart: |
| exec: |
| command: ["/bin/sh", "-c", "cat /ubuntu-init/hosts >> /etc/hosts"] |
| env: |
| - name: VNC_PASSWORD |
| value: password |
| name: vnc-portal |
| volumeMounts: |
| - mountPath: /ubuntu-init/ |
| name: ubuntu-init |
| securityContext: |
| privileged: true |
| securityContext: {} |
| volumes: |
| - name: ubuntu-init |
| emptyDir: {} |
| imagePullSecrets: |
| - name: "{{ .Values.nsPrefix }}-docker-registry-key" |