diff options
author | kerenj <keren.joseph@amdocs.com> | 2017-08-23 12:46:02 +0000 |
---|---|---|
committer | kerenj <keren.joseph@amdocs.com> | 2017-08-24 10:10:15 +0000 |
commit | fc2caa6c458c77e10e738a8e9af058d222ac9405 (patch) | |
tree | 2aa6de5d807194bb15a9c7d94052e8a6fa098e09 /kubernetes/robot/robot-deployment.yaml | |
parent | bf4b4a00464a1adfea03155ee3b9491ac0fe9f4d (diff) |
robot K8S-Helm Parameterization
changed robot k8s deployment to support helm parameterization. updated image to 1.1
Issue-ID: OOM-52
Change-Id: Ibd7cd5a73589abb42940897a5a524cb44f53dd98
Signed-off-by: kerenj <keren.joseph@amdocs.com>
Diffstat (limited to 'kubernetes/robot/robot-deployment.yaml')
-rw-r--r-- | kubernetes/robot/robot-deployment.yaml | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/kubernetes/robot/robot-deployment.yaml b/kubernetes/robot/robot-deployment.yaml deleted file mode 100644 index ade71472fa..0000000000 --- a/kubernetes/robot/robot-deployment.yaml +++ /dev/null @@ -1,53 +0,0 @@ -apiVersion: extensions/v1beta1 -kind: Deployment -metadata: - name: robot -spec: - selector: - matchLabels: - app: robot - template: - metadata: - labels: - app: robot - name: robot - spec: - containers: - - image: nexus3.onap.org:10001/openecomp/testsuite:1.0-STAGING-latest - name: robot - volumeMounts: - - name: robot-eteshare - mountPath: /share - - name: robot-assets - mountPath: /var/opt/OpenECOMP_ETE/robot/assets - - name: robot-resources - mountPath: /var/opt/OpenECOMP_ETE/robot/resources - - name: robot-testsuites - mountPath: /var/opt/OpenECOMP_ETE/robot/testsuites - - name: lighttpd-authorization - mountPath: /etc/lighttpd/authorization - ports: - - containerPort: 88 - readinessProbe: - tcpSocket: - port: 88 - initialDelaySeconds: 5 - periodSeconds: 10 - volumes: - - name: robot-eteshare - hostPath: - path: /dockerdata-nfs/onapdemo/robot/eteshare - - name: robot-assets - hostPath: - path: /dockerdata-nfs/onapdemo/robot/robot/assets - - name: robot-resources - hostPath: - path: /dockerdata-nfs/onapdemo/robot/robot/resources - - name: robot-testsuites - hostPath: - path: /dockerdata-nfs/onapdemo/robot/robot/testsuites - - name: lighttpd-authorization - hostPath: - path: /dockerdata-nfs/onapdemo/robot/authorization - imagePullSecrets: - - name: onap-docker-registry-key |