Merge "Skip tigerastatus check due to race condition"

This commit is contained in:
Zuul 2021-01-06 23:42:40 +00:00 committed by Gerrit Code Review
commit e0ad83c398
2 changed files with 6 additions and 4 deletions

View File

@ -23,8 +23,9 @@ airshipctl phase run initinfra-networking-ephemeral --debug
echo "Wait for Calico to be deployed using tigera"
kubectl --kubeconfig $KUBECONFIG --context $KUBECONFIG_EPHEMERAL_CONTEXT wait --all-namespaces --for=condition=Ready pods --all --timeout=1000s
echo "Wait for Tigerastatus to be Available"
kubectl --kubeconfig $KUBECONFIG --context $KUBECONFIG_EPHEMERAL_CONTEXT wait --for=condition=Available tigerastatus --all --timeout=1000s -A
# Skipping this check due a race condition till a work-around is identified.
#echo "Wait for Tigerastatus to be Available"
#kubectl --kubeconfig $KUBECONFIG --context $KUBECONFIG_EPHEMERAL_CONTEXT wait --for=condition=Available tigerastatus --all --timeout=1000s -A
echo "Deploy metal3.io components to ephemeral node"
airshipctl phase run initinfra-ephemeral --debug

View File

@ -24,8 +24,9 @@ airshipctl phase run initinfra-networking-target --debug
echo "Wait for Calico to be deployed using tigera"
kubectl --kubeconfig $KUBECONFIG --context $KUBECONFIG_TARGET_CONTEXT wait --all-namespaces --for=condition=Ready pods --all --timeout=600s
echo "Wait for Tigerastatus to be available"
kubectl --kubeconfig $KUBECONFIG --context $KUBECONFIG_TARGET_CONTEXT wait --for=condition=Available tigerastatus --all --timeout=600s -A
# Skipping this check due a race condition till a work-around is identified.
#echo "Wait for Tigerastatus to be available"
#kubectl --kubeconfig $KUBECONFIG --context $KUBECONFIG_TARGET_CONTEXT wait --for=condition=Available tigerastatus --all --timeout=600s -A
echo "Deploy infra to cluster"
airshipctl phase run initinfra-target --debug