Skip to content

Commit bfd7d3e

Browse files
authored
Go dependency maintenance (#114)
1 parent b33f03d commit bfd7d3e

File tree

4 files changed

+91
-92
lines changed

4 files changed

+91
-92
lines changed

config/crd/bases/cloudagent.appuio.io_zoneusageprofiles.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
33
kind: CustomResourceDefinition
44
metadata:
55
annotations:
6-
controller-gen.kubebuilder.io/version: v0.15.0
6+
controller-gen.kubebuilder.io/version: v0.16.1
77
name: zoneusageprofiles.cloudagent.appuio.io
88
spec:
99
group: cloudagent.appuio.io

config/rbac/role.yaml

Lines changed: 2 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ rules:
88
- ""
99
resources:
1010
- configmaps
11+
- namespaces
12+
- pods
1113
verbs:
1214
- get
1315
- list
@@ -19,28 +21,12 @@ rules:
1921
verbs:
2022
- create
2123
- patch
22-
- apiGroups:
23-
- ""
24-
resources:
25-
- namespaces
26-
verbs:
27-
- get
28-
- list
29-
- watch
3024
- apiGroups:
3125
- ""
3226
resources:
3327
- namespaces/finalizers
3428
verbs:
3529
- update
36-
- apiGroups:
37-
- ""
38-
resources:
39-
- pods
40-
verbs:
41-
- get
42-
- list
43-
- watch
4430
- apiGroups:
4531
- '*'
4632
resources:

go.mod

Lines changed: 28 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,24 @@
11
module github.com/appuio/appuio-cloud-agent
22

3-
go 1.22.5
3+
go 1.23
4+
5+
toolchain go1.23.0
46

57
require (
68
github.com/appuio/control-api v0.33.3
79
github.com/go-logr/logr v1.4.2
810
github.com/minio/pkg v1.7.5
9-
github.com/openshift/api v0.0.0-20240301093301-ce10821dc999 // release-4.11
11+
github.com/openshift/api v0.0.0-20240729140855-0a58f8c30a8c // release-4.15
1012
github.com/stretchr/testify v1.9.0
1113
go.uber.org/multierr v1.11.0
1214
gomodules.xyz/jsonpatch/v2 v2.4.0
1315
gopkg.in/inf.v0 v0.9.1
14-
k8s.io/api v0.30.3
15-
k8s.io/apimachinery v0.30.3
16-
k8s.io/client-go v0.30.3
17-
sigs.k8s.io/controller-runtime v0.18.4
18-
sigs.k8s.io/controller-tools v0.15.0
19-
sigs.k8s.io/kind v0.23.0
16+
k8s.io/api v0.31.0
17+
k8s.io/apimachinery v0.31.0
18+
k8s.io/client-go v0.31.0
19+
sigs.k8s.io/controller-runtime v0.19.0
20+
sigs.k8s.io/controller-tools v0.16.1
21+
sigs.k8s.io/kind v0.24.0
2022
sigs.k8s.io/yaml v1.4.0
2123
)
2224

@@ -25,12 +27,12 @@ require (
2527
github.com/alessio/shellescape v1.4.2 // indirect
2628
github.com/beorn7/perks v1.0.1 // indirect
2729
github.com/cespare/xxhash/v2 v2.3.0 // indirect
28-
github.com/davecgh/go-spew v1.1.1 // indirect
30+
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
2931
github.com/emicklei/go-restful/v3 v3.12.1 // indirect
30-
github.com/evanphx/json-patch v5.6.0+incompatible // indirect
3132
github.com/evanphx/json-patch/v5 v5.9.0 // indirect
3233
github.com/fatih/color v1.17.0 // indirect
3334
github.com/fsnotify/fsnotify v1.7.0 // indirect
35+
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
3436
github.com/go-logr/zapr v1.3.0 // indirect
3537
github.com/go-openapi/jsonpointer v0.21.0 // indirect
3638
github.com/go-openapi/jsonreference v0.21.0 // indirect
@@ -48,6 +50,7 @@ require (
4850
github.com/inconshreveable/mousetrap v1.1.0 // indirect
4951
github.com/josharian/intern v1.0.0 // indirect
5052
github.com/json-iterator/go v1.1.12 // indirect
53+
github.com/klauspost/compress v1.17.9 // indirect
5154
github.com/mailru/easyjson v0.7.7 // indirect
5255
github.com/mattn/go-colorable v0.1.13 // indirect
5356
github.com/mattn/go-isatty v0.0.20 // indirect
@@ -58,29 +61,31 @@ require (
5861
github.com/pelletier/go-toml v1.9.5 // indirect
5962
github.com/pkg/errors v0.9.1 // indirect
6063
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
61-
github.com/prometheus/client_golang v1.19.1 // indirect
64+
github.com/prometheus/client_golang v1.20.1 // indirect
6265
github.com/prometheus/client_model v0.6.1 // indirect
6366
github.com/prometheus/common v0.55.0 // indirect
6467
github.com/prometheus/procfs v0.15.1 // indirect
6568
github.com/spf13/cobra v1.8.1 // indirect
6669
github.com/spf13/pflag v1.0.5 // indirect
70+
github.com/x448/float16 v0.8.4 // indirect
6771
go.uber.org/zap v1.27.0 // indirect
68-
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
69-
golang.org/x/mod v0.19.0 // indirect
70-
golang.org/x/net v0.27.0 // indirect
71-
golang.org/x/oauth2 v0.21.0 // indirect
72-
golang.org/x/sync v0.7.0 // indirect
73-
golang.org/x/sys v0.22.0 // indirect
74-
golang.org/x/term v0.22.0 // indirect
75-
golang.org/x/text v0.16.0 // indirect
76-
golang.org/x/time v0.5.0 // indirect
77-
golang.org/x/tools v0.23.0 // indirect
72+
golang.org/x/exp v0.0.0-20240808152545-0cdaa3abc0fa // indirect
73+
golang.org/x/mod v0.20.0 // indirect
74+
golang.org/x/net v0.28.0 // indirect
75+
golang.org/x/oauth2 v0.22.0 // indirect
76+
golang.org/x/sync v0.8.0 // indirect
77+
golang.org/x/sys v0.24.0 // indirect
78+
golang.org/x/term v0.23.0 // indirect
79+
golang.org/x/text v0.17.0 // indirect
80+
golang.org/x/time v0.6.0 // indirect
81+
golang.org/x/tools v0.24.0 // indirect
7882
google.golang.org/protobuf v1.34.2 // indirect
83+
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
7984
gopkg.in/yaml.v2 v2.4.0 // indirect
8085
gopkg.in/yaml.v3 v3.0.1 // indirect
81-
k8s.io/apiextensions-apiserver v0.30.3 // indirect
86+
k8s.io/apiextensions-apiserver v0.31.0 // indirect
8287
k8s.io/klog/v2 v2.130.1 // indirect
83-
k8s.io/kube-openapi v0.0.0-20240709000822-3c01b740850f // indirect
88+
k8s.io/kube-openapi v0.0.0-20240816214639-573285566f34 // indirect
8489
k8s.io/utils v0.0.0-20240711033017-18e509b52bc8 // indirect
8590
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
8691
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect

0 commit comments

Comments
 (0)