Skip to content

Commit 05e2725

Browse files
authored
Update dependencies (#109)
* Update dependencies Signed-off-by: Daichi Sakaue <[email protected]>
1 parent a551578 commit 05e2725

File tree

6 files changed

+134
-118
lines changed

6 files changed

+134
-118
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
include Makefile.versions
22

3-
CONTROLLER_TOOLS_VERSION = 0.16.2
3+
CONTROLLER_TOOLS_VERSION = 0.16.5
44

55
PROJECT_DIR := $(CURDIR)
66
BIN_DIR := $(PROJECT_DIR)/bin

Makefile.versions

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
ACTIONS_CHECKOUT_VERSION := 4
22
ACTIONS_CREATE_RELEASE_VERSION := 1
33
ACTIONS_SETUP_GO_VERSION := 5
4-
CERT_MANAGER_VERSION := 1.15.3
5-
CONTOUR_VERSION := 1.29.1
6-
ENVTEST_K8S_VERSION := 1.30.3
4+
CERT_MANAGER_VERSION := 1.16.1
5+
CONTOUR_VERSION := 1.30.1
6+
ENVTEST_K8S_VERSION := 1.31.0
77
EXTERNAL_DNS_VERSION := 0.15.0
8-
GH_VERSION := 2.35.0
9-
YQ_VERSION := 4.35.2
8+
GH_VERSION := 2.62.0
9+
YQ_VERSION := 4.44.5
1010

1111
# Follow the kustomize version installed in the Argo CD container
1212
# https://github.com/cybozu/neco-containers/blob/main/argocd/Dockerfile#L10

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ Supported environments
1414
----------------------
1515

1616
- Kubernetes
17-
- 1.30
17+
- 1.31
1818
- Contour
19-
- 1.29
19+
- 1.30
2020
- ExternalDNS
2121
- 0.15
2222
- cert-manager
23-
- 1.15
23+
- 1.16
2424

2525
Other versions may or may not work.
2626

controllers/suite_test.go

+8-1
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,10 @@ import (
1212
corev1 "k8s.io/api/core/v1"
1313
"k8s.io/apimachinery/pkg/runtime"
1414
"k8s.io/client-go/rest"
15+
"k8s.io/utils/ptr"
1516
ctrl "sigs.k8s.io/controller-runtime"
1617
"sigs.k8s.io/controller-runtime/pkg/client"
18+
"sigs.k8s.io/controller-runtime/pkg/config"
1719
"sigs.k8s.io/controller-runtime/pkg/envtest"
1820
logf "sigs.k8s.io/controller-runtime/pkg/log"
1921
"sigs.k8s.io/controller-runtime/pkg/log/zap"
@@ -126,7 +128,12 @@ func startTestManager(mgr manager.Manager) (stop func()) {
126128
func setupManager() (*runtime.Scheme, manager.Manager) {
127129
scm := runtime.NewScheme()
128130
SetupScheme(scm)
129-
mgr, err := ctrl.NewManager(cfg, ctrl.Options{Scheme: scm})
131+
mgr, err := ctrl.NewManager(cfg, ctrl.Options{
132+
Scheme: scm,
133+
Controller: config.Controller{
134+
SkipNameValidation: ptr.To(true),
135+
},
136+
})
130137
Expect(err).ShouldNot(HaveOccurred())
131138
return scm, mgr
132139
}

go.mod

+37-35
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,49 @@
11
module github.com/cybozu-go/contour-plus
22

3-
go 1.22.6
3+
go 1.23.3
44

55
require (
66
github.com/go-logr/logr v1.4.2
7-
github.com/onsi/ginkgo/v2 v2.20.2
8-
github.com/onsi/gomega v1.34.2
9-
github.com/projectcontour/contour v1.29.1
7+
github.com/onsi/ginkgo/v2 v2.21.0
8+
github.com/onsi/gomega v1.35.1
9+
github.com/projectcontour/contour v1.30.1
1010
github.com/spf13/cobra v1.8.1
1111
github.com/spf13/viper v1.19.0
12-
k8s.io/api v0.30.4
13-
k8s.io/apimachinery v0.30.4
14-
k8s.io/client-go v0.30.4
12+
k8s.io/api v0.31.2
13+
k8s.io/apimachinery v0.31.2
14+
k8s.io/client-go v0.31.2
1515
k8s.io/klog/v2 v2.130.1
16-
k8s.io/utils v0.0.0-20240902221715-702e33fdd3c3
17-
sigs.k8s.io/controller-runtime v0.18.4
16+
k8s.io/utils v0.0.0-20241104163129-6fe5fd82f078
17+
sigs.k8s.io/controller-runtime v0.19.1
1818
)
1919

2020
require (
2121
github.com/beorn7/perks v1.0.1 // indirect
22-
github.com/cespare/xxhash/v2 v2.2.0 // indirect
22+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
2323
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
24-
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
24+
github.com/emicklei/go-restful/v3 v3.12.1 // indirect
2525
github.com/evanphx/json-patch/v5 v5.9.0 // indirect
26-
github.com/fsnotify/fsnotify v1.7.0 // indirect
26+
github.com/fsnotify/fsnotify v1.8.0 // indirect
27+
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
2728
github.com/go-logr/zapr v1.3.0 // indirect
28-
github.com/go-openapi/jsonpointer v0.20.2 // indirect
29-
github.com/go-openapi/jsonreference v0.20.4 // indirect
30-
github.com/go-openapi/swag v0.22.7 // indirect
29+
github.com/go-openapi/jsonpointer v0.21.0 // indirect
30+
github.com/go-openapi/jsonreference v0.21.0 // indirect
31+
github.com/go-openapi/swag v0.23.0 // indirect
3132
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
3233
github.com/gogo/protobuf v1.3.2 // indirect
3334
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
3435
github.com/golang/protobuf v1.5.4 // indirect
3536
github.com/google/gnostic-models v0.6.8 // indirect
3637
github.com/google/go-cmp v0.6.0 // indirect
3738
github.com/google/gofuzz v1.2.0 // indirect
38-
github.com/google/pprof v0.0.0-20240903155634-a8630aee4ab9 // indirect
39+
github.com/google/pprof v0.0.0-20241101162523-b92577c0c142 // indirect
3940
github.com/google/uuid v1.6.0 // indirect
40-
github.com/hashicorp/hcl v1.0.1-vault-5 // indirect
41+
github.com/hashicorp/hcl v1.0.1-vault-7 // indirect
4142
github.com/imdario/mergo v0.3.16 // indirect
4243
github.com/inconshreveable/mousetrap v1.1.0 // indirect
4344
github.com/josharian/intern v1.0.0 // indirect
4445
github.com/json-iterator/go v1.1.12 // indirect
46+
github.com/klauspost/compress v1.17.11 // indirect
4547
github.com/magiconair/properties v1.8.7 // indirect
4648
github.com/mailru/easyjson v0.7.7 // indirect
4749
github.com/mitchellh/mapstructure v1.5.0 // indirect
@@ -50,36 +52,36 @@ require (
5052
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
5153
github.com/pelletier/go-toml/v2 v2.2.3 // indirect
5254
github.com/pkg/errors v0.9.1 // indirect
53-
github.com/prometheus/client_golang v1.19.1 // indirect
55+
github.com/prometheus/client_golang v1.20.5 // indirect
5456
github.com/prometheus/client_model v0.6.1 // indirect
55-
github.com/prometheus/common v0.53.0 // indirect
56-
github.com/prometheus/procfs v0.12.0 // indirect
57+
github.com/prometheus/common v0.60.1 // indirect
58+
github.com/prometheus/procfs v0.15.1 // indirect
5759
github.com/sagikazarmark/locafero v0.6.0 // indirect
5860
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
5961
github.com/sourcegraph/conc v0.3.0 // indirect
6062
github.com/spf13/afero v1.11.0 // indirect
6163
github.com/spf13/cast v1.7.0 // indirect
6264
github.com/spf13/pflag v1.0.5 // indirect
6365
github.com/subosito/gotenv v1.6.0 // indirect
66+
github.com/x448/float16 v0.8.4 // indirect
6467
go.uber.org/multierr v1.11.0 // indirect
65-
go.uber.org/zap v1.26.0 // indirect
66-
golang.org/x/exp v0.0.0-20240904232852-e7e105dedf7e // indirect
67-
golang.org/x/net v0.29.0 // indirect
68-
golang.org/x/oauth2 v0.20.0 // indirect
69-
golang.org/x/sys v0.25.0 // indirect
70-
golang.org/x/term v0.24.0 // indirect
71-
golang.org/x/text v0.18.0 // indirect
72-
golang.org/x/time v0.5.0 // indirect
73-
golang.org/x/tools v0.24.0 // indirect
68+
go.uber.org/zap v1.27.0 // indirect
69+
golang.org/x/exp v0.0.0-20241108190413-2d47ceb2692f // indirect
70+
golang.org/x/net v0.31.0 // indirect
71+
golang.org/x/oauth2 v0.24.0 // indirect
72+
golang.org/x/sys v0.27.0 // indirect
73+
golang.org/x/term v0.26.0 // indirect
74+
golang.org/x/text v0.20.0 // indirect
75+
golang.org/x/time v0.8.0 // indirect
76+
golang.org/x/tools v0.27.0 // indirect
7477
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
75-
google.golang.org/protobuf v1.34.2 // indirect
78+
google.golang.org/protobuf v1.35.2 // indirect
7679
gopkg.in/inf.v0 v0.9.1 // indirect
7780
gopkg.in/ini.v1 v1.67.0 // indirect
78-
gopkg.in/yaml.v2 v2.4.0 // indirect
7981
gopkg.in/yaml.v3 v3.0.1 // indirect
80-
k8s.io/apiextensions-apiserver v0.30.1 // indirect
81-
k8s.io/kube-openapi v0.0.0-20240228011516-70dd3763d340 // indirect
82-
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
83-
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
82+
k8s.io/apiextensions-apiserver v0.31.2 // indirect
83+
k8s.io/kube-openapi v0.0.0-20241105132330-32ad38e42d3f // indirect
84+
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect
85+
sigs.k8s.io/structured-merge-diff/v4 v4.4.3 // indirect
8486
sigs.k8s.io/yaml v1.4.0 // indirect
8587
)

0 commit comments

Comments
 (0)