Skip to content

Commit

Permalink
Merge pull request #107 from ckotzbauer/renovate/kubernetes-versions
Browse files Browse the repository at this point in the history
deps: update kubernetes versions to v0.21.1
  • Loading branch information
ckotzbauer committed Jun 9, 2021
2 parents eb480dc + 3d788f5 commit e7ff3ac
Show file tree
Hide file tree
Showing 5 changed files with 112 additions and 105 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: '1.16.0'
go-version: '1.16'

- name: Setup Kubebuilder
uses: RyanSiu1995/kubebuilder-action@v1.2
Expand All @@ -35,7 +35,7 @@ jobs:
- name: Setup Kubectl
uses: azure/setup-kubectl@v1
with:
version: 'v1.20.2'
version: 'v1.21.1'

- name: Execute Tests
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ jobs:
fail-fast: false
matrix:
kubernetes-version:
- 1.18.19
- 1.19.11
- 1.20.7
- 1.21.1
steps:
- name: Install Go
uses: actions/setup-go@v2
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ The image contains versions of `k8s.io/client-go`. Kubernetes aims to provide fo

| access-manager | k8s.io/client-go | k8s.io/apimachinery | expected kubernetes compatibility |
|-----------------|------------------|---------------------|-----------------------------------|
| master | v0.20.6 | v0.20.6 | 1.19.x, 1.20.x, 1.21.x |
| 0.5.0 | v0.20.1 | v0.20.1 | 1.19.x, 1.20.x, 1.21.x |
| 0.4.0 | v0.19.2 | v0.19.2 | 1.18.x, 1.19.x, 1.20.x |
| 0.3.0 | v0.18.8 | v0.18.8 | 1.17.x, 1.18.x, 1.19.x |
| 0.2.0 | v12.0.0 | v0.18.5 | 1.17.x, 1.18.x, 1.19.x |
| 0.1.0 | v12.0.0 | v0.18.3 | 1.17.x, 1.18.x, 1.19.x |
| master | v0.21.1 | v0.21.1 | 1.20.x, 1.21.x, 1.22.x |
| 0.5.x | v0.20.1 | v0.20.1 | 1.19.x, 1.20.x, 1.21.x |
| 0.4.x | v0.19.2 | v0.19.2 | 1.18.x, 1.19.x, 1.20.x |
| 0.3.x | v0.18.8 | v0.18.8 | 1.17.x, 1.18.x, 1.19.x |
| 0.2.x | v12.0.0 | v0.18.5 | 1.17.x, 1.18.x, 1.19.x |
| 0.1.x | v12.0.0 | v0.18.3 | 1.17.x, 1.18.x, 1.19.x |

See the [release notes](https://github.com/ckotzbauer/access-manager/releases) for specific version compatibility information, including which
combination have been formally tested.
Expand Down
9 changes: 4 additions & 5 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,8 @@ require (
github.com/go-logr/logr v0.4.0
github.com/onsi/ginkgo v1.16.4
github.com/onsi/gomega v1.13.0
golang.org/x/crypto v0.0.0-20210513164829-c07d793c2f9a // indirect
k8s.io/api v0.20.6
k8s.io/apimachinery v0.20.6
k8s.io/client-go v0.20.6
sigs.k8s.io/controller-runtime v0.8.3
k8s.io/api v0.21.1
k8s.io/apimachinery v0.21.1
k8s.io/client-go v0.21.1
sigs.k8s.io/controller-runtime v0.9.0
)

0 comments on commit e7ff3ac

Please sign in to comment.