fix(linkerd-cni): prevent parent from outpacing forked monitor_cni_config() process
#355
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: cni-plugin-integration | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| paths: | |
| - .github/workflows/cni-plugin-integration.yml | |
| - Dockerfile-cni-plugin | |
| - cni-plugin/integration/flannel/Dockerfile-tester | |
| - cni-plugin/integration/run.sh | |
| - cni-plugin/** | |
| - cni-repair-controller/** | |
| - justfile* | |
| jobs: | |
| cni-test: | |
| strategy: | |
| matrix: | |
| cni: [flannel, calico, cilium] | |
| iptables-mode: [legacy, nft] | |
| timeout-minutes: 15 | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: linkerd/dev/actions/setup-tools@v47 | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 | |
| - name: Run CNI integration tests | |
| env: | |
| IPTABLES_MODE: ${{ matrix.iptables-mode }} | |
| run: just cni-plugin-test-integration-${{ matrix.cni }} | |
| ordering-test: | |
| continue-on-error: true | |
| timeout-minutes: 15 | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: linkerd/dev/actions/setup-tools@v47 | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 | |
| - name: Run CNI ordering tests | |
| run: just cni-plugin-test-ordering | |
| repair-controller: | |
| timeout-minutes: 15 | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: linkerd/dev/actions/setup-tools@v47 | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 | |
| - name: Run repair-controller tests | |
| run: just cni-repair-controller-integration |