File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments