We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dedad47 commit eb24d65Copy full SHA for eb24d65
.github/workflows/helm-testing.yaml
@@ -62,7 +62,12 @@ jobs:
62
sudo chown -R $(id -un). ~/.kube/
63
64
- name: Run chart-testing (install)
65
+ id: install
66
if: steps.list-changed.outputs.changed == 'true'
67
run: |
68
kubectl label node --overwrite -l node-role.kubernetes.io/control-plane kube-ovn/role=master
- 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