remove network resources when pod is deleted #38
Workflow file for this run
This file contains 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: test-functional | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
permissions: | |
contents: read | |
jobs: | |
test-functional: | |
name: test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: stable | |
- run: | | |
sudo cp ./nodedev/cni/10-ignore.link /etc/systemd/network/10-ignore.link | |
sudo systemctl restart systemd-networkd | |
sleep 2 # keep this here, because we need to wait a lil | |
- run: make functests |