Skip to content

Commit

Permalink
Add iptables
Browse files Browse the repository at this point in the history
Signed-off-by: Derek Nola <derek.nola@suse.com>
  • Loading branch information
dereknola committed Sep 17, 2024
1 parent feda603 commit f1aa014
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ jobs:
strategy:
fail-fast: false
matrix:
dtest: [basics, bootstraptoken, cacerts, compat, lazypull, upgrade]
dtest: [basics, bootstraptoken, cacerts, compat, upgrade]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -147,7 +147,7 @@ jobs:
cache: false
- name: Install Support Tools
run: |
sudo apt-get update && sudo apt-get install -y wget gawk openssh-client openssh-server
sudo apt-get update && sudo apt-get install -y wget gawk openssh-client openssh-server net-tools iptables
sudo wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_arm64 -O /usr/bin/yq &&\
sudo chmod +x /usr/bin/yq
curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/arm64/kubectl"
Expand Down
7 changes: 5 additions & 2 deletions tests/docker/test-run-basics
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,11 @@ all_services=(
export NUM_SERVERS=1
export NUM_AGENTS=1
export WAIT_SERVICES="${all_services[@]}"
export SERVER_ARGS="--snapshotter=native"
export AGENT_ARGS="--snapshotter=native"

if [ "$(uname -i)" = "aarch64" ]; then
export SERVER_ARGS="--snapshotter=native"
export AGENT_ARGS="--snapshotter=native"
fi

start-test() {
use-local-storage-volume
Expand Down

0 comments on commit f1aa014

Please sign in to comment.