diff options
author | Gary Wu <gary.i.wu@huawei.com> | 2018-04-05 11:52:27 -0700 |
---|---|---|
committer | Gary Wu <gary.i.wu@huawei.com> | 2018-04-05 11:52:27 -0700 |
commit | c815e1df8a9b4a26598bfc44c7ee75ca42c593b1 (patch) | |
tree | 47c14ce822dcf0bb8858b5bba6752286b6df6fde | |
parent | bd059a45872bbef66d05a9531e397e6e12c1555c (diff) |
Change how OOM Robot results are retreived
Change-Id: Ieadfb4633342ca0d57506d33ca9713df1dc0a888
Issue-ID: INT-381
Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
-rwxr-xr-x | deployment/heat/onap-oom/scripts/deploy.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/deployment/heat/onap-oom/scripts/deploy.sh b/deployment/heat/onap-oom/scripts/deploy.sh index 60ceab663..c81e65c8b 100755 --- a/deployment/heat/onap-oom/scripts/deploy.sh +++ b/deployment/heat/onap-oom/scripts/deploy.sh @@ -45,6 +45,7 @@ for n in $(seq 1 10); do fi sleep 15m done -LOG_DIR=$(ssh -o StrictHostKeychecking=no -i ~/.ssh/onap_key ubuntu@$K8S_IP "ls -1t /dockerdata-nfs/onap/robot/eteshare/logs | head -1") -rsync -e "ssh -i ~/.ssh/onap_key" -avPz ubuntu@$K8S_IP:/dockerdata-nfs/onap/robot/eteshare/logs/${LOG_DIR}/ $WORKSPACE/archives/ +ROBOT_POD=$(ssh -o StrictHostKeychecking=no -i ~/.ssh/onap_key ubuntu@$K8S_IP 'sudo su -c "kubectl --namespace onap get pods"' | grep robot | sed 's/ .*//') +LOG_DIR=$(ssh -o StrictHostKeychecking=no -i ~/.ssh/onap_key ubuntu@$K8S_IP "sudo su -c \"kubectl exec $ROBOT_POD --namespace onap -- ls -1t /share/logs | head -1\"") +wget --user=robot --password=robot -r -np -nH --cut-dirs=2 -R "index.html*" -P $WORKSPACE/archives/ http://$K8S_IP:30209/logs/$LOG_DIR/ exit 0 |