Skip to content

Commit

Permalink
feat: update kubernetes libraries to 0.30.x (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
JGiola authored Sep 18, 2024
1 parent 4dac848 commit 3c1fcff
Show file tree
Hide file tree
Showing 5 changed files with 75 additions and 69 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ jobs:
- "1.28"
- "1.29"
- "1.30"
- "1.31"
env:
ENVTEST_K8S_VERSION: ${{matrix.k8s_version}}
steps:
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

- update k8s.io packages to v0.28.14
- update k8s.io packages to v0.30.5
- update controller-runtime to v0.18.5
- update to go 1.23.1

## [v0.4.0] - 2024-07-24
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,13 +119,13 @@ the versions of Kubernetes that are compatible with them.

#### Compatibility matrix

| | Kubernetes 1.24 | Kubernetes 1.25 | Kubernetes 1.26 | Kubernetes 1.27 | Kubernetes 1.28 | Kubernetes 1.29 | Kubernetes 1.30 |
| ------------| --------------- | --------------- | --------------- | --------------- | --------------- | --------------- | --------------- |
| `jpl-0.1.x` | +- | ✓ | +- | +- | +- | +- | +- |
| `jpl-0.2.x` | +- | +- | +- | +- | ✓ | +- | +- |
| `jpl-0.3.x` | +- | +- | +- | +- | ✓ | +- | +- |
| `jpl-0.4.x` | +- | +- | +- | +- | ✓ | +- | +- |
| `HEAD` | +- | +- | +- | +- | | +- | +- |
| | Kubernetes 1.24 | Kubernetes 1.25 | Kubernetes 1.26 | Kubernetes 1.27 | Kubernetes 1.28 | Kubernetes 1.29 | Kubernetes 1.30 | Kubernetes 1.31 |
| ------------| --------------- | --------------- | --------------- | --------------- | --------------- | --------------- | --------------- | --------------- |
| `jpl-0.1.x` | +- | ✓ | +- | +- | +- | +- | +- | +- |
| `jpl-0.2.x` | +- | +- | +- | +- | ✓ | +- | +- | +- |
| `jpl-0.3.x` | +- | +- | +- | +- | ✓ | +- | +- | +- |
| `jpl-0.4.x` | +- | +- | +- | +- | ✓ | +- | +- | +- |
| `HEAD` | +- | +- | +- | +- | +- | +- | ✓ | +- |

Key:

Expand Down
30 changes: 16 additions & 14 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,23 @@ go 1.23.1

require (
github.com/stretchr/testify v1.9.0
k8s.io/api v0.28.14
k8s.io/apiextensions-apiserver v0.28.14
k8s.io/apimachinery v0.28.14
k8s.io/cli-runtime v0.28.14
k8s.io/client-go v0.28.14
sigs.k8s.io/controller-runtime v0.16.6
k8s.io/api v0.30.5
k8s.io/apiextensions-apiserver v0.30.5
k8s.io/apimachinery v0.30.5
k8s.io/cli-runtime v0.30.5
k8s.io/client-go v0.30.5
sigs.k8s.io/controller-runtime v0.18.5
sigs.k8s.io/kustomize/kyaml v0.17.2
)

require (
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
github.com/evanphx/json-patch v5.6.0+incompatible // indirect
github.com/evanphx/json-patch/v5 v5.6.0 // indirect
github.com/evanphx/json-patch v4.12.0+incompatible // indirect
github.com/evanphx/json-patch/v5 v5.9.0 // indirect
github.com/go-errors/errors v1.4.2 // indirect
github.com/go-logr/logr v1.2.4 // indirect
github.com/go-logr/logr v1.4.1 // indirect
github.com/go-openapi/jsonpointer v0.19.6 // indirect
github.com/go-openapi/jsonreference v0.20.2 // indirect
github.com/go-openapi/swag v0.22.4 // indirect
Expand All @@ -38,6 +39,7 @@ require (
github.com/json-iterator/go v1.1.12 // indirect
github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de // indirect
github.com/mailru/easyjson v0.7.7 // indirect
github.com/moby/term v0.0.0-20221205130635-1aeaba878587 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 // indirect
Expand All @@ -50,8 +52,8 @@ require (
github.com/xlab/treeprint v1.2.0 // indirect
go.starlark.net v0.0.0-20230525235612-a134d8f9ddca // indirect
golang.org/x/net v0.23.0 // indirect
golang.org/x/oauth2 v0.8.0 // indirect
golang.org/x/sync v0.5.0 // indirect
golang.org/x/oauth2 v0.12.0 // indirect
golang.org/x/sync v0.6.0 // indirect
golang.org/x/sys v0.18.0 // indirect
golang.org/x/term v0.18.0 // indirect
golang.org/x/text v0.14.0 // indirect
Expand All @@ -61,11 +63,11 @@ require (
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
k8s.io/klog/v2 v2.100.1 // indirect
k8s.io/kube-openapi v0.0.0-20231010175941-2dd684a91f00 // indirect
k8s.io/klog/v2 v2.120.1 // indirect
k8s.io/kube-openapi v0.0.0-20240228011516-70dd3763d340 // indirect
k8s.io/utils v0.0.0-20230726121419-3b25d923346b // indirect
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
sigs.k8s.io/kustomize/api v0.13.5-0.20230601165947-6ce0bf390ce3 // indirect
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
sigs.k8s.io/yaml v1.4.0 // indirect
)
Loading

0 comments on commit 3c1fcff

Please sign in to comment.