Skip to content

Commit accb7ab

Browse files
Lengthen timeouts from 1 minute to 2
In the waits for the CRDs to be established Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 4b9a131 commit accb7ab

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/ci-e2e-openshift.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -445,9 +445,10 @@ jobs:
445445
446446
# Wait for CRDs to become Established (API servers have digested the definitions)
447447
echo "Waiting for CRDs to become Established..."
448-
kubectl wait --for=condition=Established crd/inferenceserverconfigs.fma.llm-d.ai --timeout=60s
449-
kubectl wait --for=condition=Established crd/launcherconfigs.fma.llm-d.ai --timeout=60s
450-
kubectl wait --for=condition=Established crd/launcherpopulationpolicies.fma.llm-d.ai --timeout=60s
448+
CRD_TIMEOUT=120s
449+
kubectl wait --for=condition=Established crd/inferenceserverconfigs.fma.llm-d.ai --timeout="$CRD_TIMEOUT"
450+
kubectl wait --for=condition=Established crd/launcherconfigs.fma.llm-d.ai --timeout="$CRD_TIMEOUT"
451+
kubectl wait --for=condition=Established crd/launcherpopulationpolicies.fma.llm-d.ai --timeout="$CRD_TIMEOUT"
451452
echo "All CRDs established"
452453
453454
- name: Create ConfigMaps

0 commit comments

Comments
 (0)