We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6d5083 commit acbf89eCopy full SHA for acbf89e
src/krkn_lib/tests/test_krkn_kubernetes.py
@@ -105,7 +105,7 @@ def test_pod_shell(self):
105
shell = self.lib_k8s.get_pod_shell("fedtools", namespace)
106
self.assertEqual(shell, "bash")
107
108
- def test_exec_command_on_node(self):
+ def test_command_on_node(self):
109
try:
110
response = self.lib_k8s.exec_command_on_node(
111
"kind-control-plane",
@@ -820,7 +820,7 @@ def test_exists_path_in_pod(self):
820
self.deploy_namespace(namespace, [])
821
self.deploy_fedtools(namespace=namespace)
822
count = 0
823
- MAX_RETRIES = 5
+ MAX_RETRIES = 10
824
while not self.lib_k8s.is_pod_running("fedtools", namespace):
825
if count > MAX_RETRIES:
826
self.assertFalse(True, "container failed to become ready")
0 commit comments