Skip to content

Commit eb24d65

Browse files
committed
feat: check for pod restarts after installation
Signed-off-by: oujonny <jonny@immerda.ch>
1 parent dedad47 commit eb24d65

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/helm-testing.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,12 @@ jobs:
6262
sudo chown -R $(id -un). ~/.kube/
6363
6464
- name: Run chart-testing (install)
65+
id: install
6566
if: steps.list-changed.outputs.changed == 'true'
6667
run: |
6768
kubectl label node --overwrite -l node-role.kubernetes.io/control-plane kube-ovn/role=master
68-
ct install --target-branch ${{ github.event.repository.default_branch }}
69+
ct install --target-branch ${{ github.event.repository.default_branch }}
70+
71+
- name: Check kube ovn pod restarts
72+
if: ${{ success() || (failure() && steps.install.conclusion == 'failure') }}
73+
run: make check-kube-ovn-pod-restarts

0 commit comments

Comments
 (0)