Skip to content

Commit 40da2f9

Browse files
authored
chore: upgrade go to 1.25.8 (#359)
1 parent 9b87563 commit 40da2f9

22 files changed

Lines changed: 22 additions & 24 deletions

.github/workflows/build-publish-mcr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ env:
1717
# `public` indicates images to MCR wil be publicly available, and will be removed in the final MCR images
1818
REGISTRY_REPO: public/aks/fleet
1919

20-
GO_VERSION: '1.24.13'
20+
GO_VERSION: '1.25.8'
2121

2222
jobs:
2323
prepare-variables:

.github/workflows/e2e-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ permissions:
1313
contents: read
1414

1515
env:
16-
GO_VERSION: '1.24.13'
16+
GO_VERSION: '1.25.8'
1717

1818
jobs:
1919
detect-noop:

.github/workflows/go.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414

1515
env:
1616
# Common versions
17-
GO_VERSION: '1.24.13'
17+
GO_VERSION: '1.25.8'
1818

1919
jobs:
2020

.github/workflows/publish-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ env:
1919
REGISTRY: ghcr.io
2020
IMAGE_VERSION: latest
2121

22-
GO_VERSION: '1.24.13'
22+
GO_VERSION: '1.25.8'
2323

2424
jobs:
2525
export-registry:

.github/workflows/trivy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ env:
1818
MEMBER_NET_CONTROLLER_MANAGER_IMAGE_NAME: member-net-controller-manager
1919
MCS_CONTROLLER_MANAGER_IMAGE_NAME: mcs-controller-manager
2020

21-
GO_VERSION: '1.24.13'
21+
GO_VERSION: '1.25.8'
2222

2323
jobs:
2424
export-registry:

.github/workflows/unit-integration-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ permissions:
1616
contents: read
1717

1818
env:
19-
GO_VERSION: '1.24.13'
19+
GO_VERSION: '1.25.8'
2020

2121
jobs:
2222
detect-noop:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ TOOLS_BIN_DIR := $(abspath $(TOOLS_DIR)/bin)
4747
# Binaries
4848
# Note: Need to use abspath so we can invoke these from subdirectories
4949

50-
CONTROLLER_GEN_VER := v0.16.0
50+
CONTROLLER_GEN_VER := v0.20.0
5151
CONTROLLER_GEN_BIN := controller-gen
5252
CONTROLLER_GEN := $(abspath $(TOOLS_BIN_DIR)/$(CONTROLLER_GEN_BIN)-$(CONTROLLER_GEN_VER))
5353

api/v1alpha1/serviceimport_types.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ type ServicePort struct {
5050
// The IP protocol for this port. Supports "TCP", "UDP", and "SCTP".
5151
// Default is TCP.
5252
// +kubebuilder:validation:Enum:=TCP;UDP;SCTP
53+
// +kubebuilder:default=TCP
5354
Protocol corev1.Protocol `json:"protocol,omitempty"`
5455

5556
// The application protocol for this port.

config/crd/bases/networking.fleet.azure.com_endpointsliceexports.yaml

Lines changed: 1 addition & 2 deletions
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.16.0
6+
controller-gen.kubebuilder.io/version: v0.20.0
77
name: endpointsliceexports.networking.fleet.azure.com
88
spec:
99
group: networking.fleet.azure.com
@@ -181,7 +181,6 @@ spec:
181181
format: int32
182182
type: integer
183183
protocol:
184-
default: TCP
185184
description: |-
186185
protocol represents the IP protocol for this port.
187186
Must be UDP, TCP, or SCTP.

config/crd/bases/networking.fleet.azure.com_endpointsliceimports.yaml

Lines changed: 1 addition & 2 deletions
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.16.0
6+
controller-gen.kubebuilder.io/version: v0.20.0
77
name: endpointsliceimports.networking.fleet.azure.com
88
spec:
99
group: networking.fleet.azure.com
@@ -181,7 +181,6 @@ spec:
181181
format: int32
182182
type: integer
183183
protocol:
184-
default: TCP
185184
description: |-
186185
protocol represents the IP protocol for this port.
187186
Must be UDP, TCP, or SCTP.

0 commit comments

Comments
 (0)