commit | 90689150d8d466a15f9d16a192e996cd5f67d6dd | [log] [tgz] |
---|---|---|
author | Vladimir Jigulin <vjigulin@mirantis.com> | Wed Sep 26 15:38:19 2018 +0400 |
committer | Vladimir Jigulin <vjigulin@mirantis.com> | Wed Oct 03 14:31:31 2018 +0400 |
tree | f9e075eb7da76d88334467fff8feae8690689ae3 | |
parent | 5902ae61234a46c8397d71a65f8878928e5a58d0 [diff] [blame] |
Minor fixes in k8s tests - Fix test_k8s_externaldns_coredns test - Fix K8SSampleDeployment class Change-Id: I4734e3987af5495c9eb9f4dda4fedd7153964cb6
diff --git a/tcp_tests/tests/system/test_k8s_actions.py b/tcp_tests/tests/system/test_k8s_actions.py index 6510a67..b75d59c 100644 --- a/tcp_tests/tests/system/test_k8s_actions.py +++ b/tcp_tests/tests/system/test_k8s_actions.py
@@ -65,7 +65,9 @@ }) show_step(5) - k8s_deployed.nslookup(hostname, svc.get_ip()) + dns_svc = k8s_deployed.api.services.get( + name='coredns', namespace='kube-system') + k8s_deployed.nslookup(hostname, dns_svc.get_ip()) show_step(6) deployment.delete()