Skip to content

Commit f51613d

Browse files
authored
Increase kubectl wait times (#625)
* feat: increase kueue wait time * feat: increase dns timeout
1 parent 600f7f0 commit f51613d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/xpk/commands/cluster.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -819,7 +819,7 @@ def check_deployment_exists(args, deployment_name: str, namespace: str) -> bool:
819819

820820

821821
def verify_coredns_readiness(
822-
args, timeout: int = 120, namespace: str = 'kube-system'
822+
args, timeout: int = 240, namespace: str = 'kube-system'
823823
):
824824
"""Verifies CoreDNS readiness using kubectl wait commands."""
825825
xpk_print('Now verifying CoreDNS readiness...')

src/xpk/core/kueue.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
KUEUE_VERSION = 'v0.12.2'
4444
CLUSTER_QUEUE_NAME = 'cluster-queue'
4545
LOCAL_QUEUE_NAME = 'multislice-queue'
46-
WAIT_FOR_KUEUE_TIMEOUT = '5m'
46+
WAIT_FOR_KUEUE_TIMEOUT = '10m'
4747
MEMORY_SIZE_PER_VM = 1.2
4848
MIN_MEMORY_LIMIT_SIZE = 4096
4949

0 commit comments

Comments
 (0)