Add shared sl tests yaml
Change-Id: Ic9422d44e58e2ce5d08a6371a855b7e60f8766e2
Reviewed-on: https://review.gerrithub.io/377203
Reviewed-by: Tatyanka Leontovich <tleontovich@mirantis.com>
Tested-by: Tatyanka Leontovich <tleontovich@mirantis.com>
diff --git a/tcp_tests/managers/k8s/cluster.py b/tcp_tests/managers/k8s/cluster.py
index 424ab32..4bda03f 100644
--- a/tcp_tests/managers/k8s/cluster.py
+++ b/tcp_tests/managers/k8s/cluster.py
@@ -58,7 +58,7 @@
auth = base64.encodestring(auth_string.encode()).decode()[:-1]
auth = "Basic {}".format(auth)
self._client = api_client.ApiClient(
- '{schema}://{host}:{port}/'.format(
+ '{schema}://{host}:{port}'.format(
schema=schema, host=host, port=port))
self._client.set_default_header('Authorization', auth)
restcli_impl = self._client.RESTClient.IMPL
@@ -67,7 +67,7 @@
else:
self._client = api_client.ApiClient(
- '{schema}://{host}:{port}/'.format(
+ '{schema}://{host}:{port}'.format(
schema=schema, host=host, port=port))
self._api = apiv_api.ApivApi(self._client)
self._bapi = apisbatchv_api.ApisbatchvApi(self._client)