Skip to content

Commit f6d5083

Browse files
committed
increasing timeout
1 parent e87bea9 commit f6d5083

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/krkn_lib/k8s/krkn_kubernetes.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1150,11 +1150,12 @@ def exec_command_on_node(
11501150
pod_body = yaml.safe_load(
11511151
pod_template.render(nodename=node_name, podname=exec_pod_name)
11521152
)
1153+
11531154
logging.info(
11541155
f"Creating pod to exec command {command} on node {node_name}"
11551156
)
11561157
try:
1157-
self.create_pod(pod_body, exec_pod_namespace, 300)
1158+
self.create_pod(pod_body, exec_pod_namespace, 500)
11581159
except Exception as e:
11591160
logging.error(
11601161
f"failed to create pod {exec_pod_name} on node {node_name},"

0 commit comments

Comments
 (0)