Skip to content

Commit

Permalink
switch to minikube
Browse files Browse the repository at this point in the history
  • Loading branch information
fenio committed Jun 28, 2024
1 parent 8f7b9f0 commit 939dad0
Showing 1 changed file with 14 additions and 8 deletions.
22 changes: 14 additions & 8 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,20 @@ jobs:
chmod +x kubectl
sudo mv kubectl /usr/local/bin/
- name: Set up kind
run: |
curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.23.0/kind-linux-amd64
chmod +x ./kind
sudo mv ./kind /usr/local/bin/kind
- name: Create Kubernetes cluster
run: kind create cluster --wait 5m
- name: Install Minikube
run curl -LO "https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64"
install minikube-linux-amd64 /tmp/
/tmp/minikube-linux-amd64 config set WantUpdateNotification false
/tmp/minikube-linux-amd64 start --driver=docker

# - name: Set up kind
# run: |
# curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.23.0/kind-linux-amd64
# chmod +x ./kind
# sudo mv ./kind /usr/local/bin/kind
#
# - name: Create Kubernetes cluster
# run: kind create cluster --wait 5m

- name: Create StorageClass, test PVCs and PODs
run: |
Expand Down

0 comments on commit 939dad0

Please sign in to comment.