Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit beb8c39

Browse files
committedApr 30, 2021
.github/workflows: Remove the e2e-minikube action job
Update the .github/workflows/test.yml action configuration and remove the e2e-minikube job. Running e2e tests on both kind and minikube cluster provisioners provides little value and opens us up to additional flakes being present in the e2e suite, along with maintaining multiple installation paths for these jobs. Signed-off-by: timflannagan <[email protected]>
1 parent 81921b7 commit beb8c39

File tree

1 file changed

+0
-24
lines changed

1 file changed

+0
-24
lines changed
 

‎.github/workflows/test.yml

-24
Original file line numberDiff line numberDiff line change
@@ -8,30 +8,6 @@ on:
88
- '**'
99
- '!doc/**'
1010
jobs:
11-
e2e-minikube:
12-
runs-on: ubuntu-20.04
13-
steps:
14-
- uses: actions/checkout@v2
15-
- run: |
16-
. /etc/os-release
17-
echo "deb https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/xUbuntu_${VERSION_ID}/ /" | sudo tee /etc/apt/sources.list.d/devel:kubic:libcontainers:stable.list
18-
curl -L https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/xUbuntu_${VERSION_ID}/Release.key | sudo apt-key add -
19-
sudo apt-get update
20-
sudo apt-get -y install conntrack podman
21-
podman version
22-
- run: |
23-
curl -sLo minikube "$(curl -sL https://api.github.com/repos/kubernetes/minikube/releases/latest | jq -r '[.assets[] | select(.name == "minikube-linux-amd64")] | first | .browser_download_url')"
24-
chmod +x minikube
25-
sudo mv minikube /bin/
26-
minikube start --driver=none
27-
sudo chown -R "$USER" "$HOME/.kube" "$HOME/.minikube"
28-
sudo usermod -aG docker "$USER"
29-
- run: |
30-
"${GITHUB_WORKSPACE}/scripts/start_registry.sh" minikube-registry
31-
export DOCKER_REGISTRY_HOST=localhost:443
32-
- run: |
33-
KUBECONFIG="$HOME/.kube/config" DOCKER_REGISTRY_HOST=localhost:443 make build e2e
34-
3511
e2e-kind:
3612
runs-on: ubuntu-20.04
3713
steps:

0 commit comments

Comments
 (0)
Please sign in to comment.