Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

deps: Bump Minikube and Kubernetes #66

Merged
merged 1 commit into from
Jul 21, 2022
Merged
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
27 changes: 14 additions & 13 deletions .github/workflows/runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
kubernetes: [v1.24.0,v1.23.0,v1.20.0,v1.19.2,v1.18.9,v1.17.5]
kubernetes: [v1.24.1,v1.23.0,v1.20.0,v1.19.2,v1.18.9,v1.17.5]
steps:
- name: Checkout
uses: actions/checkout@v2
Expand All @@ -21,7 +21,7 @@ jobs:
- name: Test Action
uses: ./
with:
minikube version: v1.25.2
minikube version: v1.26.0
kubernetes version: ${{ matrix.kubernetes }}
github token: ${{ secrets.GITHUB_TOKEN }}
- name: Validate Minikube
Expand All @@ -41,8 +41,8 @@ jobs:
- name: Test Action
uses: ./
with:
minikube version: v1.25.2
kubernetes version: v1.24.0
minikube version: v1.26.0
kubernetes version: v1.24.1
github token: ${{ secrets.GITHUB_TOKEN }}
driver: docker
- name: Validate Minikube
Expand All @@ -64,8 +64,8 @@ jobs:
- name: Test Action
uses: ./
with:
minikube version: v1.25.2
kubernetes version: v1.24.0
minikube version: v1.26.0
kubernetes version: v1.24.1
github token: ${{ secrets.GITHUB_TOKEN }}
start args: '--addons=registry --addons=metrics-server'
- name: Validate Minikube
Expand All @@ -85,8 +85,8 @@ jobs:
- name: Test Action
uses: ./
with:
minikube version: v1.25.2
kubernetes version: v1.24.0
minikube version: v1.26.0
kubernetes version: v1.24.1
github token: ${{ secrets.GITHUB_TOKEN }}
start args: '--addons=ingress'
- name: Validate Minikube
Expand All @@ -96,11 +96,11 @@ jobs:
- name: Validate enabled addon in arg
run: minikube addons list -o json | jq '.ingress.Status' | grep enabled
container-runtime:
name: Run with container runtime config
name: Run with container runtime config in docker driver (Required by containerd)
runs-on: ubuntu-latest
strategy:
matrix:
kubernetes: [v1.24.0,v1.17.5]
kubernetes: [v1.24.1,v1.17.5]
container_runtime: ['containerd']
steps:
- name: Checkout
Expand All @@ -110,16 +110,17 @@ jobs:
- name: Test Action
uses: ./
with:
minikube version: v1.25.2
minikube version: v1.26.0
kubernetes version: ${{ matrix.kubernetes }}
github token: ${{ secrets.GITHUB_TOKEN }}
container runtime: ${{ matrix.container_runtime }}
driver: docker
- name: Validate Minikube
run: minikube status | grep Running
- name: Validate Cluster
run: kubectl get nodes
- name: Validate default driver
run: 'cat $MINIKUBE_HOME/.minikube/machines/minikube/config.json | jq ".DriverName" | grep none'
- name: Validate container runtime (${{ matrix.container_runtime }})
run: 'cat $MINIKUBE_HOME/.minikube/machines/minikube/config.json | jq ".Driver.NodeConfig.ContainerRuntime" | grep "${{ matrix.container_runtime }}"'
legacy:
name: Run for legacy/old versions
runs-on: ubuntu-18.04
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ jobs:
- name: Setup Minikube
uses: manusa/actions-setup-minikube@v2.6.0
with:
minikube version: 'v1.25.1'
kubernetes version: 'v1.24.0'
minikube version: 'v1.26.0'
kubernetes version: 'v1.24.1'
github token: ${{ secrets.GITHUB_TOKEN }}
- name: Interact with the cluster
run: kubectl get nodes
Expand Down