diff options
author | Gary Wu <gary.i.wu@huawei.com> | 2018-05-04 10:23:53 -0700 |
---|---|---|
committer | Gary Wu <gary.i.wu@huawei.com> | 2018-05-04 10:23:53 -0700 |
commit | 5cbd6aa384d1654d9a4471d4a5552af8550b2899 (patch) | |
tree | 675462f7e80d43af98c8d03c249841bead9904eb | |
parent | cb2dfe16bf8c3bfb2b38be596c74ed90b83f3d6d (diff) |
Skip ELK health checks for HEAT deployments
Change-Id: Idd16415912ad3d3d5df59e18fdea3759a8b304fa
Issue-ID: INT-489
Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
-rw-r--r-- | heat/ONAP/onap_openstack.yaml | 3 | ||||
-rw-r--r-- | heat/ONAP/onap_openstack_light.yaml | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/heat/ONAP/onap_openstack.yaml b/heat/ONAP/onap_openstack.yaml index d69757e2..f1ddd402 100644 --- a/heat/ONAP/onap_openstack.yaml +++ b/heat/ONAP/onap_openstack.yaml @@ -1107,6 +1107,9 @@ resources: echo "__script_version__" > /opt/config/script_version.txt echo "__public_net_id__" > /opt/config/public_net_id.txt echo "__robot_repo__" > /opt/config/remote_repo.txt + echo "localhost" > /opt/config/log_elasticsearch_ip_addr.txt # these tests will be skipped by robot + echo "localhost" > /opt/config/log_logstash_ip_addr.txt # these tests will be skipped by robot + echo "localhost" > /opt/config/log_kibana_ip_addr.txt # these tests will be skipped by robot # Download and run install script curl -k __nexus_repo__/org.onap.demo/boot/__artifacts_version__/robot_install.sh -o /opt/robot_install.sh diff --git a/heat/ONAP/onap_openstack_light.yaml b/heat/ONAP/onap_openstack_light.yaml index 6ad957ee..81f48a7f 100644 --- a/heat/ONAP/onap_openstack_light.yaml +++ b/heat/ONAP/onap_openstack_light.yaml @@ -1024,6 +1024,9 @@ resources: echo "__script_version__" > /opt/config/script_version.txt echo "__public_net_id__" > /opt/config/public_net_id.txt echo "__robot_repo__" > /opt/config/remote_repo.txt + echo "localhost" > /opt/config/log_elasticsearch_ip_addr.txt # these tests will be skipped by robot + echo "localhost" > /opt/config/log_logstash_ip_addr.txt # these tests will be skipped by robot + echo "localhost" > /opt/config/log_kibana_ip_addr.txt # these tests will be skipped by robot # Download and run install script curl -k __nexus_repo__/org.onap.demo/boot/__artifacts_version__/robot_install.sh -o /opt/robot_install.sh |