Skip to content

Commit

Permalink
include only running pods in test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
qrkourier committed Jan 16, 2025
1 parent 55f9ca6 commit c602bec
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -660,8 +660,8 @@ jobs:
LOG_EMPTY=0
kubectl get pods -n test1 --context $AWS_CLUSTER | tee ./testcase-01_pods.log
kubectl get pods -n test2 --context $GKE_CLUSTER | tee -a ./testcase-01_pods.log
kubectl get pods -n test1 --field-selector=status.phase=Running --context $AWS_CLUSTER | tee ./testcase-01_pods.log
kubectl get pods -n test2 --field-selector=status.phase=Running --context $GKE_CLUSTER | tee -a ./testcase-01_pods.log
# send enough requests to trigger the terminatorStrategy: random evenly distributing of requests across all
# pods in both clusters
Expand Down Expand Up @@ -709,8 +709,8 @@ jobs:
- name: run-testcase-02
shell: bash
run: |
kubectl get pods -n test1 --context $AWS_CLUSTER | tee ./testcase-02_pods.log
kubectl get pods -n test2 --context $GKE_CLUSTER | tee -a ./testcase-02_pods.log
kubectl get pods -n test1 --field-selector=status.phase=Running --context $AWS_CLUSTER | tee ./testcase-02_pods.log
kubectl get pods -n test2 --field-selector=status.phase=Running --context $GKE_CLUSTER | tee -a ./testcase-02_pods.log
LOG_EMPTY=0
# send enough requests to trigger the terminatorStrategy: random evenly distributing of requests across all
Expand Down

0 comments on commit c602bec

Please sign in to comment.