Skip to content

Commit

Permalink
de
Browse files Browse the repository at this point in the history
Signed-off-by: Itxaka <[email protected]>
  • Loading branch information
Itxaka committed Sep 6, 2023
1 parent e859aec commit 8e9fff1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/reusable-provider-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ jobs:
with:
go-version-file: tests/go.mod
cache-dependency-path: tests/go.sum
- name: block all traffic to metadata ip
run: |
sudo iptables -I INPUT -s 169.254.169.254 -j DROP
sudo iptables -I OUTPUT -d 169.254.169.254 -j DROP
- name: Enable KVM group perms
run: |
sudo apt-get update
Expand All @@ -44,10 +48,6 @@ jobs:
# TODO: Switch back to the above solution when we switch to the github runners
# https://askubuntu.com/a/1081326
sudo setfacl -m u:runner:rwx /dev/kvm
- name: block all traffic to metadata ip
run: |
iptables -I INPUT -s 169.254.169.254 -j DROP
iptables -I OUTPUT -d 169.254.169.254 -j DROP
- name: Install earthly
uses: jimmykarily/[email protected]
with:
Expand Down

0 comments on commit 8e9fff1

Please sign in to comment.