diff options
author | kerenj <keren.joseph@amdocs.com> | 2017-08-23 10:22:33 +0000 |
---|---|---|
committer | kerenj <keren.joseph@amdocs.com> | 2017-08-24 10:31:13 +0000 |
commit | cbac010dec8633718531423ebe4e3ede0005d36f (patch) | |
tree | 76a6f0d535dbb102bd3775bb2a820ac2251d1ec4 /kubernetes/portal/portal-widgets-deployment.yaml | |
parent | fc2caa6c458c77e10e738a8e9af058d222ac9405 (diff) |
portal K8S-Helm Parameterization
changed portal k8s deployment to support helm parameterization
Issue-ID: OOM-52
Change-Id: I8ad9681b597a87113089f194e1a0e8a9e550bb08
Signed-off-by: kerenj <keren.joseph@amdocs.com>
Diffstat (limited to 'kubernetes/portal/portal-widgets-deployment.yaml')
-rw-r--r-- | kubernetes/portal/portal-widgets-deployment.yaml | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/kubernetes/portal/portal-widgets-deployment.yaml b/kubernetes/portal/portal-widgets-deployment.yaml deleted file mode 100644 index e170313a1e..0000000000 --- a/kubernetes/portal/portal-widgets-deployment.yaml +++ /dev/null @@ -1,57 +0,0 @@ -apiVersion: extensions/v1beta1 -kind: Deployment -metadata: - name: portalwidgets -spec: - selector: - matchLabels: - app: portalwidgets - template: - metadata: - labels: - app: portalwidgets - name: portalwidgets - annotations: - pod.beta.kubernetes.io/init-containers: '[ - { - "args": [ - "--container-name", - "portaldb" - ], - "command": [ - "/root/ready.py" - ], - "env": [ - { - "name": "NAMESPACE", - "valueFrom": { - "fieldRef": { - "apiVersion": "v1", - "fieldPath": "metadata.namespace" - } - } - } - ], - "image": "oomk8s/readiness-check:1.0.0", - "imagePullPolicy": "Always", - "name": "portalapps-readiness" - } - ]' - spec: - containers: - - image: nexus3.onap.org:10001/openecomp/portalwms:1.1-STAGING-latest - name: portalwidgets - volumeMounts: - - mountPath: /application.properties - name: portalwidgets-application-properties - ports: - - containerPort: 8082 - readinessProbe: - tcpSocket: - port: 8082 - initialDelaySeconds: 5 - periodSeconds: 10 - volumes: - - name: portalwidgets-application-properties - hostPath: - path: /dockerdata-nfs/onapdemo/portal/portal-fe/webapps/etc/ECOMPWIDGETMS/application.properties |