Skip to content

Commit

Permalink
chore: configure minikube to a static version in github ci (GoogleCon…
Browse files Browse the repository at this point in the history
…tainerTools#8951)

* chore: ..

* chore: make minikube version a variable
  • Loading branch information
ericzzzzzzz committed Aug 4, 2023
1 parent 03fa1de commit 575c543
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/integration-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
ko_version: [0.4.0]
kompose_version: [1.21.0]
kpt_version: [1.0.0-beta.13]
minikube_version: [1.30.1]
gcloud_sdk_version: [410.0.0]
container_structure_tests_version: [1.8.0]
integration_test_partitions: [0, 1, 2, 3]
Expand Down Expand Up @@ -116,10 +117,10 @@ jobs:
echo '{}' > ${HOME}/.docker/config.json
mkdir -p ${HOME}/.m2/ && cp ./hack/maven/settings.xml ${HOME}/.m2/settings.xml
- name: Install Minikube from minikube master branch @HEAD and start cluster
- name: Install Minikube and start cluster
if: ${{ env.NON_DOCS_FILES_CHANGED != 0 }}
run: |
curl -Lo minikube https://storage.googleapis.com/minikube-builds/master/minikube-linux-amd64
curl -Lo minikube https://github.com/kubernetes/minikube/releases/download/v${{ matrix.minikube_version }}/minikube-linux-amd64
sudo install minikube /usr/local/bin/minikube
minikube start --profile=minikube --driver=docker
Expand Down

0 comments on commit 575c543

Please sign in to comment.