Skip to content

Commit f6293e2

Browse files
Bump the k8s group across 1 directory with 3 updates (#65)
* Bump the k8s group across 1 directory with 3 updates Bumps the k8s group with 3 updates in the / directory: [k8s.io/apimachinery](https://github.com/kubernetes/apimachinery), [k8s.io/client-go](https://github.com/kubernetes/client-go) and [sigs.k8s.io/controller-runtime](https://github.com/kubernetes-sigs/controller-runtime). Updates `k8s.io/apimachinery` from 0.28.3 to 0.30.1 - [Commits](kubernetes/apimachinery@v0.28.3...v0.30.1) Updates `k8s.io/client-go` from 0.28.3 to 0.30.1 - [Changelog](https://github.com/kubernetes/client-go/blob/master/CHANGELOG.md) - [Commits](kubernetes/client-go@v0.28.3...v0.30.1) Updates `sigs.k8s.io/controller-runtime` from 0.16.3 to 0.18.3 - [Release notes](https://github.com/kubernetes-sigs/controller-runtime/releases) - [Changelog](https://github.com/kubernetes-sigs/controller-runtime/blob/main/RELEASE.md) - [Commits](kubernetes-sigs/controller-runtime@v0.16.3...v0.18.3) --- updated-dependencies: - dependency-name: k8s.io/apimachinery dependency-type: direct:production update-type: version-update:semver-minor dependency-group: k8s - dependency-name: k8s.io/client-go dependency-type: direct:production update-type: version-update:semver-minor dependency-group: k8s - dependency-name: sigs.k8s.io/controller-runtime dependency-type: direct:production update-type: version-update:semver-minor dependency-group: k8s ... Signed-off-by: dependabot[bot] <[email protected]> * Update k8s.io dependencies to 1.29 * Update kustomize and controller-tools * Regenerate manifests --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Hidehito Yabuuchi <[email protected]>
1 parent 2bb8b85 commit f6293e2

File tree

5 files changed

+73
-107
lines changed

5 files changed

+73
-107
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ IMG ?= ghcr.io/pfnet-research/gcp-workload-identity-federation-webhook:$(TAG)
55
IMG_LATEST ?= ghcr.io/pfnet-research/gcp-workload-identity-federation-webhook:latest
66

77
# ENVTEST_K8S_VERSION refers to the version of kubebuilder assets to be downloaded by envtest binary.
8-
ENVTEST_K8S_VERSION = 1.24
8+
ENVTEST_K8S_VERSION = 1.29
99

1010
# Get the currently used golang install path (in GOPATH/bin, unless GOBIN is set)
1111
ifeq (,$(shell go env GOBIN))
@@ -133,8 +133,8 @@ CONTROLLER_GEN ?= $(LOCALBIN)/controller-gen
133133
ENVTEST ?= $(LOCALBIN)/setup-envtest
134134

135135
## Tool Versions
136-
KUSTOMIZE_VERSION ?= v4.5.5
137-
CONTROLLER_TOOLS_VERSION ?= v0.9.2
136+
KUSTOMIZE_VERSION ?= v5.4.2
137+
CONTROLLER_TOOLS_VERSION ?= v0.15.0
138138

139139
KUSTOMIZE_INSTALL_SCRIPT ?= "https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh"
140140
.PHONY: kustomize

config/rbac/role.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
apiVersion: rbac.authorization.k8s.io/v1
33
kind: ClusterRole
44
metadata:
5-
creationTimestamp: null
65
name: manager-role
76
rules:
87
- apiGroups:

config/webhook/manifests.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
apiVersion: admissionregistration.k8s.io/v1
33
kind: MutatingWebhookConfiguration
44
metadata:
5-
creationTimestamp: null
65
name: mutating-webhook-configuration
76
webhooks:
87
- admissionReviewVersions:

go.mod

Lines changed: 22 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,36 @@
11
module github.com/pfnet-research/gcp-workload-identity-federation-webhook
22

33
go 1.21
4-
5-
toolchain go1.21.3
4+
toolchain go1.22.2
65

76
require (
87
github.com/MakeNowJust/heredoc v1.0.0
98
github.com/go-logr/logr v1.4.2
109
github.com/google/go-cmp v0.6.0
1110
github.com/onsi/ginkgo/v2 v2.19.0
1211
github.com/onsi/gomega v1.33.1
13-
k8s.io/api v0.28.3
14-
k8s.io/apimachinery v0.28.3
15-
k8s.io/client-go v0.28.3
12+
k8s.io/api v0.29.5
13+
k8s.io/apimachinery v0.29.5
14+
k8s.io/client-go v0.29.5
1615
k8s.io/utils v0.0.0-20240102154912-e7106e64919e
17-
sigs.k8s.io/controller-runtime v0.16.3
16+
sigs.k8s.io/controller-runtime v0.17.5
1817
)
1918

2019
require (
2120
github.com/beorn7/perks v1.0.1 // indirect
2221
github.com/cespare/xxhash/v2 v2.2.0 // indirect
2322
github.com/davecgh/go-spew v1.1.1 // indirect
2423
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
25-
github.com/evanphx/json-patch/v5 v5.6.0 // indirect
26-
github.com/fsnotify/fsnotify v1.6.0 // indirect
27-
github.com/go-logr/zapr v1.2.4 // indirect
24+
github.com/evanphx/json-patch/v5 v5.8.0 // indirect
25+
github.com/fsnotify/fsnotify v1.7.0 // indirect
26+
github.com/go-logr/zapr v1.3.0 // indirect
2827
github.com/go-openapi/jsonpointer v0.19.6 // indirect
2928
github.com/go-openapi/jsonreference v0.20.2 // indirect
3029
github.com/go-openapi/swag v0.22.3 // indirect
3130
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
3231
github.com/gogo/protobuf v1.3.2 // indirect
3332
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
34-
github.com/golang/protobuf v1.5.3 // indirect
33+
github.com/golang/protobuf v1.5.4 // indirect
3534
github.com/google/gnostic-models v0.6.8 // indirect
3635
github.com/google/gofuzz v1.2.0 // indirect
3736
github.com/google/pprof v0.0.0-20240424215950-a892ee059fd6 // indirect
@@ -40,21 +39,21 @@ require (
4039
github.com/josharian/intern v1.0.0 // indirect
4140
github.com/json-iterator/go v1.1.12 // indirect
4241
github.com/mailru/easyjson v0.7.7 // indirect
43-
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
42+
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect
4443
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
4544
github.com/modern-go/reflect2 v1.0.2 // indirect
4645
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
4746
github.com/pkg/errors v0.9.1 // indirect
48-
github.com/prometheus/client_golang v1.16.0 // indirect
49-
github.com/prometheus/client_model v0.4.0 // indirect
50-
github.com/prometheus/common v0.44.0 // indirect
51-
github.com/prometheus/procfs v0.10.1 // indirect
47+
github.com/prometheus/client_golang v1.18.0 // indirect
48+
github.com/prometheus/client_model v0.5.0 // indirect
49+
github.com/prometheus/common v0.45.0 // indirect
50+
github.com/prometheus/procfs v0.12.0 // indirect
5251
github.com/spf13/pflag v1.0.5 // indirect
5352
go.uber.org/multierr v1.11.0 // indirect
54-
go.uber.org/zap v1.25.0 // indirect
53+
go.uber.org/zap v1.26.0 // indirect
5554
golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e // indirect
5655
golang.org/x/net v0.25.0 // indirect
57-
golang.org/x/oauth2 v0.8.0 // indirect
56+
golang.org/x/oauth2 v0.12.0 // indirect
5857
golang.org/x/sys v0.20.0 // indirect
5958
golang.org/x/term v0.20.0 // indirect
6059
golang.org/x/text v0.15.0 // indirect
@@ -66,11 +65,11 @@ require (
6665
gopkg.in/inf.v0 v0.9.1 // indirect
6766
gopkg.in/yaml.v2 v2.4.0 // indirect
6867
gopkg.in/yaml.v3 v3.0.1 // indirect
69-
k8s.io/apiextensions-apiserver v0.28.3 // indirect
70-
k8s.io/component-base v0.28.3 // indirect
71-
k8s.io/klog/v2 v2.100.1 // indirect
72-
k8s.io/kube-openapi v0.0.0-20230717233707-2695361300d9 // indirect
68+
k8s.io/apiextensions-apiserver v0.29.2 // indirect
69+
k8s.io/component-base v0.29.2 // indirect
70+
k8s.io/klog/v2 v2.110.1 // indirect
71+
k8s.io/kube-openapi v0.0.0-20231010175941-2dd684a91f00 // indirect
7372
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
74-
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
75-
sigs.k8s.io/yaml v1.3.0 // indirect
73+
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
74+
sigs.k8s.io/yaml v1.4.0 // indirect
7675
)

0 commit comments

Comments
 (0)