Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/build-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
api.github.com:443
github.com:443
auth.docker.io:443
index.docker.io:443
registry-1.docker.io:443
production.cloudflare.docker.com:443
gcr.io:443
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/build_test_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,12 @@ jobs:
sum.golang.org:443
*.githubusercontent.com:443
storage.googleapis.com:443
get.jetify.com:443
get.jetpack.io:443
releases.jetify.com:443
releases.jetpack.io:443
artifacts.nixos.org:443
cache.nixos.org:443
cli.codecov.io:443
api.codecov.io:443
ingest.codecov.io:443
Expand Down
15 changes: 15 additions & 0 deletions .github/workflows/e2e-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,15 @@ jobs:
charts.jetstack.io:443
helm.cilium.io:443
linode.github.io:443
*.linodeobjects.com:443
dl.k8s.io:443
cdn.dl.k8s.io:443
get.jetify.com:443
get.jetpack.io:443
releases.jetify.com:443
releases.jetpack.io:443
artifacts.nixos.org:443
cache.nixos.org:443

- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
Expand All @@ -140,6 +147,14 @@ jobs:
enable-cache: 'true'
refresh-cli: 'false'

- name: Create IPv4-only kind network
run: |
docker network inspect kind >/dev/null 2>&1 || \
docker network create -d=bridge \
-o com.docker.network.bridge.enable_ip_masquerade=true \
-o com.docker.network.driver.mtu=1500 \
kind

- name: Run E2E Test
env:
E2E_FLAGS: ${{ inputs.e2e-flags }}
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/e2e-upgrade-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ jobs:
charts.jetstack.io:443
helm.cilium.io:443
linode.github.io:443
*.linodeobjects.com:443
dl.k8s.io:443
cdn.dl.k8s.io:443

Expand All @@ -93,6 +94,14 @@ jobs:
go-version-file: 'go.mod'
check-latest: true

- name: Create IPv4-only kind network
run: |
docker network inspect kind >/dev/null 2>&1 || \
docker network create -d=bridge \
-o com.docker.network.bridge.enable_ip_masquerade=true \
-o com.docker.network.driver.mtu=1500 \
kind

- name: Run Upgrade Test
env:
LINODE_REGION: us-sea
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/pull_request_ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,12 @@ jobs:
sum.golang.org:443
*.githubusercontent.com:443
storage.googleapis.com:443
get.jetify.com:443
get.jetpack.io:443
releases.jetify.com:443
releases.jetpack.io:443
artifacts.nixos.org:443
cache.nixos.org:443
dl.k8s.io:443
cdn.dl.k8s.io:443

Expand Down Expand Up @@ -111,6 +117,7 @@ jobs:
allowed-endpoints: >
api.github.com:443
github.com:443
index.docker.io:443
proxy.golang.org:443
sum.golang.org:443
go.dev:443
Expand Down
Loading