Skip to content

Commit eb0bb2c

Browse files
author
Jelle Dijkstra
committed
Go 1.25
1 parent 6524e90 commit eb0bb2c

File tree

8 files changed

+72
-64
lines changed

8 files changed

+72
-64
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Kubebuilder DevContainer",
3-
"image": "docker.io/golang:1.24",
3+
"image": "docker.io/golang:1.25",
44
"features": {
55
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
66
"ghcr.io/devcontainers/features/git:1": {}

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the manager binary
2-
FROM docker.io/golang:1.24 AS builder
2+
FROM docker.io/golang:1.25 AS builder
33
ARG TARGETOS
44
ARG TARGETARCH
55

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ This operator uses a Custom Resource(CR) called _Atom_ as the input for the depl
1515
## Getting Started
1616

1717
### Prerequisites
18-
- go version v1.24.0+
18+
- go version v1.25.0+
1919
- docker version 17.03+.
2020
- kubectl version v1.11.3+.
2121
- Access to a Kubernetes v1.11.3+ cluster.

config/crd/bases/pdok.nl_atoms.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.18.0
6+
controller-gen.kubebuilder.io/version: v0.19.0
77
name: atoms.pdok.nl
88
spec:
99
group: pdok.nl

go.mod

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module github.com/pdok/atom-operator
22

3-
go 1.24.0
3+
go 1.25.0
44

5-
godebug default=go1.24
5+
godebug default=go1.25
66

77
require (
88
github.com/cbroglie/mustache v1.4.0
@@ -38,7 +38,7 @@ require (
3838
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
3939
github.com/cespare/xxhash/v2 v2.3.0 // indirect
4040
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
41-
github.com/emicklei/go-restful/v3 v3.12.1 // indirect
41+
github.com/emicklei/go-restful/v3 v3.12.2 // indirect
4242
github.com/evanphx/json-patch/v5 v5.9.11 // indirect
4343
github.com/felixge/httpsnoop v1.0.4 // indirect
4444
github.com/fsnotify/fsnotify v1.9.0 // indirect
@@ -63,7 +63,7 @@ require (
6363
github.com/google/pprof v0.0.0-20241210010833-40e02aabc2ad // indirect
6464
github.com/google/uuid v1.6.0 // indirect
6565
github.com/gorilla/mux v1.8.1 // indirect
66-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.1 // indirect
66+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.3 // indirect
6767
github.com/hashicorp/go-version v1.7.0 // indirect
6868
github.com/http-wasm/http-wasm-host-go v0.7.0 // indirect
6969
github.com/imdario/mergo v0.3.16 // indirect
@@ -75,7 +75,7 @@ require (
7575
github.com/mattn/go-isatty v0.0.20 // indirect
7676
github.com/miekg/dns v1.1.62 // indirect
7777
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
78-
github.com/modern-go/reflect2 v1.0.2 // indirect
78+
github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee // indirect
7979
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
8080
github.com/patrickmn/go-cache v2.1.0+incompatible // indirect
8181
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
@@ -105,6 +105,8 @@ require (
105105
go.opentelemetry.io/otel/trace v1.35.0 // indirect
106106
go.opentelemetry.io/proto/otlp v1.5.0 // indirect
107107
go.uber.org/multierr v1.11.0 // indirect
108+
go.yaml.in/yaml/v2 v2.4.2 // indirect
109+
go.yaml.in/yaml/v3 v3.0.4 // indirect
108110
golang.org/x/crypto v0.36.0 // indirect
109111
golang.org/x/exp v0.0.0-20241215155358-4a5509556b9e // indirect
110112
golang.org/x/mod v0.23.0 // indirect
@@ -117,16 +119,16 @@ require (
117119
gomodules.xyz/jsonpatch/v2 v2.5.0 // indirect
118120
google.golang.org/genproto/googleapis/api v0.0.0-20250324211829-b45e905df463 // indirect
119121
google.golang.org/genproto/googleapis/rpc v0.0.0-20250324211829-b45e905df463 // indirect
120-
google.golang.org/grpc v1.71.1 // indirect
122+
google.golang.org/grpc v1.72.1 // indirect
121123
google.golang.org/protobuf v1.36.6 // indirect
122124
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
123125
gopkg.in/inf.v0 v0.9.1 // indirect
124126
gopkg.in/yaml.v3 v3.0.1 // indirect
125-
k8s.io/apiserver v0.33.0 // indirect
126-
k8s.io/component-base v0.33.0 // indirect
127+
k8s.io/apiserver v0.34.1 // indirect
128+
k8s.io/component-base v0.34.1 // indirect
127129
k8s.io/klog/v2 v2.130.1 // indirect
128-
k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff // indirect
129-
k8s.io/utils v0.0.0-20241210054802-24370beab758 // indirect
130+
k8s.io/kube-openapi v0.0.0-20250710124328-f3f2b991d03b // indirect
131+
k8s.io/utils v0.0.0-20250604170112-4c0f3b243397 // indirect
130132
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.31.2 // indirect
131133
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect
132134
sigs.k8s.io/kustomize/api v0.19.0 // indirect

go.sum

Lines changed: 52 additions & 49 deletions
Large diffs are not rendered by default.

test/e2e/e2e_test.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
//go:build e2e
2+
// +build e2e
3+
14
/*
25
Copyright 2025.
36

test/utils/utils.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
1414
limitations under the License.
1515
*/
1616

17-
package utils
17+
package utils //nolint:revive
1818

1919
import (
2020
"bufio"

0 commit comments

Comments
 (0)