Skip to content

Commit

Permalink
chore: retry 3 times update k3d coredns cm
Browse files Browse the repository at this point in the history
  • Loading branch information
JashBook committed Nov 27, 2024
1 parent 6299737 commit d74676b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/test-cloud-k3d-self.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,10 @@ jobs:

- name: update k3d coredns cm
run: |
bash ${{ github.workspace }}/apecloud-cd/.github/utils/utils.sh --type 37
for i in {1..3}; do
bash ${{ github.workspace }}/apecloud-cd/.github/utils/utils.sh --type 37
sleep 3
done
- name: install cert-manager
run: |
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/test-cloud-k3d.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,10 @@ jobs:

- name: update k3d coredns cm
run: |
bash ${{ github.workspace }}/apecloud-cd/.github/utils/utils.sh --type 37
for i in {1..3}; do
bash ${{ github.workspace }}/apecloud-cd/.github/utils/utils.sh --type 37
sleep 3
done
- name: install cert-manager
run: |
Expand Down

0 comments on commit d74676b

Please sign in to comment.