Skip to content

Commit 4f4a534

Browse files
authored
Upgrade go version to 1.22 (#118)
* Switch controller-gen version to 0.14.0 * Bump golangci to support go 1.22 * Bumping gosec to 2.19.0 --------- Co-authored-by: Khaja Omer <[email protected]>
1 parent 13df910 commit 4f4a534

13 files changed

+335
-263
lines changed

.github/workflows/build_test_ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: Set up Go
3838
uses: actions/setup-go@v5
3939
with:
40-
go-version: '1.21'
40+
go-version: '1.22'
4141

4242
- name: Build
4343
run: make build
@@ -71,7 +71,7 @@ jobs:
7171
- name: Set up Go
7272
uses: actions/setup-go@v5
7373
with:
74-
go-version: '1.21'
74+
go-version: '1.22'
7575

7676
- name: Docker cache
7777
uses: ScribeMD/[email protected]
@@ -126,7 +126,7 @@ jobs:
126126
- name: Set up Go
127127
uses: actions/setup-go@v5
128128
with:
129-
go-version: '1.21'
129+
go-version: '1.22'
130130

131131
- name: Docker cache
132132
uses: ScribeMD/[email protected]

.github/workflows/codeql.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
- name: Set up Go
4646
uses: actions/setup-go@v5
4747
with:
48-
go-version: '1.21'
48+
go-version: '1.22'
4949

5050
# Initializes the CodeQL tools for scanning.
5151
- name: Initialize CodeQL

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the manager binary
2-
FROM golang:1.21 as builder
2+
FROM golang:1.22 as builder
33
ARG TARGETOS
44
ARG TARGETARCH
55

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,11 @@ vet: ## Run go vet against code.
7070

7171
.PHONY: gosec
7272
gosec: ## Run gosec against code.
73-
docker run --rm -w /workdir -v $(PWD):/workdir securego/gosec:2.18.2 -exclude-dir=bin -exclude-generated ./...
73+
docker run --rm -w /workdir -v $(PWD):/workdir securego/gosec:2.19.0 -exclude-dir=bin -exclude-generated ./...
7474

7575
.PHONY: lint
7676
lint: ## Run lint against code.
77-
docker run --rm -w /workdir -v $(PWD):/workdir golangci/golangci-lint:v1.55 golangci-lint run -c .golangci.yml
77+
docker run --rm -w /workdir -v $(PWD):/workdir golangci/golangci-lint:v1.56.1 golangci-lint run -c .golangci.yml
7878

7979
.PHONY: nilcheck
8080
nilcheck: nilaway ## Run nil check against code.
@@ -207,7 +207,7 @@ GOVULNC ?= $(LOCALBIN)/govulncheck
207207
KUSTOMIZE_VERSION ?= v5.1.1
208208
CTLPTL_VERSION ?= v0.8.25
209209
CLUSTERCTL_VERSION ?= v1.5.3
210-
CONTROLLER_TOOLS_VERSION ?= v0.13.0
210+
CONTROLLER_TOOLS_VERSION ?= v0.14.0
211211
TILT_VERSION ?= 0.33.6
212212
KIND_VERSION ?= 0.20.0
213213
KUTTL_VERSION ?= 0.15.0

config/crd/bases/infrastructure.cluster.x-k8s.io_linodeclusters.yaml

+84-76
Large diffs are not rendered by default.

config/crd/bases/infrastructure.cluster.x-k8s.io_linodeclustertemplates.yaml

+57-56
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.13.0
6+
controller-gen.kubebuilder.io/version: v0.14.0
77
name: linodeclustertemplates.infrastructure.cluster.x-k8s.io
88
spec:
99
group: infrastructure.cluster.x-k8s.io
@@ -25,14 +25,19 @@ spec:
2525
API
2626
properties:
2727
apiVersion:
28-
description: 'APIVersion defines the versioned schema of this representation
29-
of an object. Servers should convert recognized schemas to the latest
30-
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
28+
description: |-
29+
APIVersion defines the versioned schema of this representation of an object.
30+
Servers should convert recognized schemas to the latest internal value, and
31+
may reject unrecognized values.
32+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
3133
type: string
3234
kind:
33-
description: 'Kind is a string value representing the REST resource this
34-
object represents. Servers may infer this from the endpoint the client
35-
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
35+
description: |-
36+
Kind is a string value representing the REST resource this object represents.
37+
Servers may infer this from the endpoint the client submits requests to.
38+
Cannot be updated.
39+
In CamelCase.
40+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
3641
type: string
3742
metadata:
3843
type: object
@@ -47,10 +52,9 @@ spec:
4752
description: LinodeClusterSpec defines the desired state of LinodeCluster
4853
properties:
4954
controlPlaneEndpoint:
50-
description: ControlPlaneEndpoint represents the endpoint
51-
used to communicate with the LinodeCluster control plane.
52-
If ControlPlaneEndpoint is unset then the Nodebalancer ip
53-
will be used.
55+
description: |-
56+
ControlPlaneEndpoint represents the endpoint used to communicate with the LinodeCluster control plane.
57+
If ControlPlaneEndpoint is unset then the Nodebalancer ip will be used.
5458
properties:
5559
host:
5660
description: The hostname on which the API server is serving.
@@ -92,66 +96,63 @@ spec:
9296
description: The Linode Region the LinodeCluster lives in.
9397
type: string
9498
vpcRef:
95-
description: "ObjectReference contains enough information
96-
to let you inspect or modify the referred object. --- New
97-
uses of this type are discouraged because of difficulty
98-
describing its usage when embedded in APIs. 1. Ignored fields.
99-
\ It includes many fields which are not generally honored.
100-
\ For instance, ResourceVersion and FieldPath are both very
101-
rarely valid in actual usage. 2. Invalid usage help. It
102-
is impossible to add specific help for individual usage.
103-
\ In most embedded usages, there are particular restrictions
104-
like, \"must refer only to types A and B\" or \"UID not
105-
honored\" or \"name must be restricted\". Those cannot be
106-
well described when embedded. 3. Inconsistent validation.
107-
\ Because the usages are different, the validation rules
108-
are different by usage, which makes it hard for users to
109-
predict what will happen. 4. The fields are both imprecise
110-
and overly precise. Kind is not a precise mapping to a
111-
URL. This can produce ambiguity during interpretation and
112-
require a REST mapping. In most cases, the dependency is
113-
on the group,resource tuple and the version of the actual
114-
struct is irrelevant. 5. We cannot easily change it. Because
115-
this type is embedded in many locations, updates to this
116-
type will affect numerous schemas. Don't make new APIs
117-
embed an underspecified API type they do not control. \n
118-
Instead of using this type, create a locally provided and
119-
used type that is well-focused on your reference. For example,
120-
ServiceReferences for admission registration: https://github.com/kubernetes/api/blob/release-1.17/admissionregistration/v1/types.go#L533
121-
."
99+
description: |-
100+
ObjectReference contains enough information to let you inspect or modify the referred object.
101+
---
102+
New uses of this type are discouraged because of difficulty describing its usage when embedded in APIs.
103+
1. Ignored fields. It includes many fields which are not generally honored. For instance, ResourceVersion and FieldPath are both very rarely valid in actual usage.
104+
2. Invalid usage help. It is impossible to add specific help for individual usage. In most embedded usages, there are particular
105+
restrictions like, "must refer only to types A and B" or "UID not honored" or "name must be restricted".
106+
Those cannot be well described when embedded.
107+
3. Inconsistent validation. Because the usages are different, the validation rules are different by usage, which makes it hard for users to predict what will happen.
108+
4. The fields are both imprecise and overly precise. Kind is not a precise mapping to a URL. This can produce ambiguity
109+
during interpretation and require a REST mapping. In most cases, the dependency is on the group,resource tuple
110+
and the version of the actual struct is irrelevant.
111+
5. We cannot easily change it. Because this type is embedded in many locations, updates to this type
112+
will affect numerous schemas. Don't make new APIs embed an underspecified API type they do not control.
113+
114+
115+
Instead of using this type, create a locally provided and used type that is well-focused on your reference.
116+
For example, ServiceReferences for admission registration: https://github.com/kubernetes/api/blob/release-1.17/admissionregistration/v1/types.go#L533 .
122117
properties:
123118
apiVersion:
124119
description: API version of the referent.
125120
type: string
126121
fieldPath:
127-
description: 'If referring to a piece of an object instead
128-
of an entire object, this string should contain a valid
129-
JSON/Go field access statement, such as desiredState.manifest.containers[2].
130-
For example, if the object reference is to a container
131-
within a pod, this would take on a value like: "spec.containers{name}"
132-
(where "name" refers to the name of the container that
133-
triggered the event) or if no container name is specified
134-
"spec.containers[2]" (container with index 2 in this
135-
pod). This syntax is chosen only to have some well-defined
136-
way of referencing a part of an object. TODO: this design
137-
is not final and this field is subject to change in
138-
the future.'
122+
description: |-
123+
If referring to a piece of an object instead of an entire object, this string
124+
should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
125+
For example, if the object reference is to a container within a pod, this would take on a value like:
126+
"spec.containers{name}" (where "name" refers to the name of the container that triggered
127+
the event) or if no container name is specified "spec.containers[2]" (container with
128+
index 2 in this pod). This syntax is chosen only to have some well-defined way of
129+
referencing a part of an object.
130+
TODO: this design is not final and this field is subject to change in the future.
139131
type: string
140132
kind:
141-
description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
133+
description: |-
134+
Kind of the referent.
135+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
142136
type: string
143137
name:
144-
description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
138+
description: |-
139+
Name of the referent.
140+
More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
145141
type: string
146142
namespace:
147-
description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
143+
description: |-
144+
Namespace of the referent.
145+
More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
148146
type: string
149147
resourceVersion:
150-
description: 'Specific resourceVersion to which this reference
151-
is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
148+
description: |-
149+
Specific resourceVersion to which this reference is made, if any.
150+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
152151
type: string
153152
uid:
154-
description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
153+
description: |-
154+
UID of the referent.
155+
More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
155156
type: string
156157
type: object
157158
x-kubernetes-map-type: atomic

0 commit comments

Comments
 (0)