Skip to content

Commit

Permalink
fix upgrade test
Browse files Browse the repository at this point in the history
Signed-off-by: tao.yang <[email protected]>
  • Loading branch information
ty-dc committed Apr 26, 2024
1 parent 4c8ee12 commit 09366e2
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/auto-upgrade-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -211,10 +211,13 @@ jobs:
RESULT=0
export KUBECONFIG=${{ env.KUBECONFIG_PATH }}/${{ env.E2E_CLUSTER_NAME }}/.kube/config
export DEBUG_ENV_PATH=${{ env.KUBECONFIG_PATH }}/../scripts/debugEnv.sh
kubectl get po -A | grep "spiderpool"
RESULT=$(kubectl get po -A | grep "spiderpool" | grep -Ev "Running|Completed" | wc -l )
if ((RESULT!=0)) ; then
sleep 120
RESULT=$(kubectl get po -A | grep "spiderpool" | grep -Ev "Running|Completed" | wc -l )
fi
kubectl get po -A | grep "spiderpool"
kubectl get network-attachment-definitions.k8s.cni.cncf.io -A
sleep 60
if ((RESULT==0)) ; then
kubectl get po -l app=test-pod -oyaml
echo "after the upgrade is completed, restart the Pod. The Pod will run normally on the new version."
Expand All @@ -225,11 +228,14 @@ jobs:
echo "RUN_E2E_PASS=true" >> $GITHUB_ENV
else
kubectl get po -l app=test-pod -owide
kubectl describe po -l app=test-pod || KIND_CLUSTER_NAME=${{ env.E2E_CLUSTER_NAME }} ${DEBUG_ENV_PATH} ${KUBECONFIG} "detail" ;
kubectl describe po -l app=test-pod
KIND_CLUSTER_NAME=${{ env.E2E_CLUSTER_NAME }}
./${DEBUG_ENV_PATH} ${KUBECONFIG} "detail"
echo "RUN_E2E_PASS=false" >> $GITHUB_ENV
fi
else
KIND_CLUSTER_NAME=${{ env.E2E_CLUSTER_NAME }} ${DEBUG_ENV_PATH} ${KUBECONFIG} "detail" ; \
KIND_CLUSTER_NAME=${{ env.E2E_CLUSTER_NAME }}
./${DEBUG_ENV_PATH} ${KUBECONFIG} "detail"
kubectl describe po -n kube-system -l app.kubernetes.io/instance=spiderpool
kubectl logs -n kube-system -l app.kubernetes.io/instance=spiderpool
echo "RUN_E2E_PASS=false" >> $GITHUB_ENV
Expand Down

0 comments on commit 09366e2

Please sign in to comment.