Skip to content

Commit 43ee484

Browse files
committed
chore: update talos to v1.12.0-beta.0
Update talos to v1.12.0-beta.0 Signed-off-by: Mateusz Urbanek <[email protected]>
1 parent cd63fd7 commit 43ee484

File tree

7 files changed

+129
-131
lines changed

7 files changed

+129
-131
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT.
22
#
3-
# Generated on 2025-11-17T11:45:00Z by kres e1d6dac.
3+
# Generated on 2025-11-17T13:25:00Z by kres e1d6dac.
44

55
concurrency:
66
group: ${{ github.head_ref || github.run_id }}
@@ -26,7 +26,7 @@ jobs:
2626
packages: write
2727
pull-requests: read
2828
runs-on:
29-
group: generic
29+
group: large
3030
if: (!startsWith(github.head_ref, 'renovate/') && !startsWith(github.head_ref, 'dependabot/')) && github.event_name == 'pull_request'
3131
steps:
3232
- name: gather-system-info
@@ -103,7 +103,7 @@ jobs:
103103
packages: write
104104
pull-requests: read
105105
runs-on:
106-
group: generic
106+
group: large
107107
if: (!startsWith(github.head_ref, 'renovate/') && !startsWith(github.head_ref, 'dependabot/')) && github.event_name != 'pull_request' && !startsWith(github.ref, 'refs/tags/')
108108
steps:
109109
- name: gather-system-info
@@ -164,7 +164,7 @@ jobs:
164164
packages: write
165165
pull-requests: read
166166
runs-on:
167-
group: generic
167+
group: large
168168
if: (!startsWith(github.head_ref, 'renovate/') && !startsWith(github.head_ref, 'dependabot/')) && startsWith(github.ref, 'refs/tags/')
169169
steps:
170170
- name: gather-system-info

.kres.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ spec:
2929
- name: default
3030
buildxOptions:
3131
enabled: true
32-
runnerGroup: generic
32+
runnerGroup: large
3333
conditions:
3434
- on-pull-request
3535
steps:
@@ -54,7 +54,7 @@ spec:
5454
- name: push
5555
buildxOptions:
5656
enabled: true
57-
runnerGroup: generic
57+
runnerGroup: large
5858
conditions:
5959
- except-pull-request
6060
- not-on-tag
@@ -70,7 +70,7 @@ spec:
7070
- name: tag
7171
buildxOptions:
7272
enabled: true
73-
runnerGroup: generic
73+
runnerGroup: large
7474
conditions:
7575
- only-on-tag
7676
steps:

Makefile

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ NAME := cluster-api-talos-controller
99
ARTIFACTS := _out
1010
TEST_RUN ?= ./...
1111

12-
TOOLS ?= ghcr.io/siderolabs/tools:v1.11.0
13-
PKGS ?= v1.11.0
14-
TALOS_VERSION ?= v1.11.0
15-
K8S_VERSION ?= 1.34.0
12+
TOOLS ?= ghcr.io/siderolabs/tools:v1.12.0
13+
PKGS ?= v1.12.0
14+
TALOS_VERSION ?= v1.12.0-beta.0
15+
K8S_VERSION ?= 1.34.2
1616

1717
KRES_IMAGE ?= ghcr.io/siderolabs/kres:latest
1818

@@ -143,22 +143,23 @@ talosctl:
143143
chmod +x ./talosctl
144144

145145
env-up: talosctl ## Start development environment.
146-
./talosctl cluster create \
146+
sudo -E ./talosctl cluster create dev \
147147
--talosconfig=talosconfig \
148148
--name=cabpt-env \
149149
--kubernetes-version=$(K8S_VERSION) \
150150
--mtu=1450 \
151151
--skip-kubeconfig
152-
./talosctl kubeconfig kubeconfig \
152+
sudo -E ./talosctl kubeconfig kubeconfig \
153153
--talosconfig=talosconfig \
154154
--nodes=10.5.0.2 \
155155
--force
156+
sudo chmod 644 ./kubeconfig
156157

157158
env-down: talosctl ## Stop development environment.
158-
./talosctl cluster destroy \
159+
sudo -E ./talosctl cluster destroy \
159160
--talosconfig=talosconfig \
160161
--name=cabpt-env
161-
rm -f talosconfig kubeconfig
162+
sudo rm -f talosconfig kubeconfig
162163

163164
.PHONY: rekres
164165
rekres:

go.mod

Lines changed: 32 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/siderolabs/cluster-api-bootstrap-provider-talos
22

3-
go 1.24.0
3+
go 1.25.3
44

55
// compatibility with kube-apiserver v0.32.3, should be dropped once kube-apiserver dependency is updated
66
replace github.com/google/cel-go => github.com/google/cel-go v0.22.0
@@ -9,12 +9,12 @@ require (
99
github.com/evanphx/json-patch v5.9.11+incompatible
1010
github.com/go-logr/logr v1.4.3
1111
github.com/google/go-cmp v0.7.0
12-
github.com/siderolabs/crypto v0.6.3
12+
github.com/siderolabs/crypto v0.6.4
1313
github.com/siderolabs/go-pointer v1.0.1
14-
github.com/siderolabs/talos/pkg/machinery v1.11.0
14+
github.com/siderolabs/talos/pkg/machinery v1.12.0-beta.0
1515
github.com/spf13/pflag v1.0.7
16-
github.com/stretchr/testify v1.10.0
17-
golang.org/x/sys v0.35.0
16+
github.com/stretchr/testify v1.11.1
17+
golang.org/x/sys v0.38.0
1818
gopkg.in/yaml.v2 v2.4.0
1919
k8s.io/api v0.32.3
2020
k8s.io/apiextensions-apiserver v0.32.3
@@ -34,7 +34,7 @@ require (
3434
github.com/Masterminds/semver/v3 v3.3.0 // indirect
3535
github.com/Masterminds/sprig/v3 v3.3.0 // indirect
3636
github.com/NYTimes/gziphandler v1.1.1 // indirect
37-
github.com/ProtonMail/go-crypto v1.2.0 // indirect
37+
github.com/ProtonMail/go-crypto v1.3.0 // indirect
3838
github.com/adrg/xdg v0.5.3 // indirect
3939
github.com/antlr4-go/antlr/v4 v4.13.1 // indirect
4040
github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a // indirect
@@ -43,17 +43,17 @@ require (
4343
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
4444
github.com/cespare/xxhash/v2 v2.3.0 // indirect
4545
github.com/cloudflare/circl v1.6.1 // indirect
46-
github.com/containerd/go-cni v1.1.12 // indirect
47-
github.com/containernetworking/cni v1.2.3 // indirect
48-
github.com/cosi-project/runtime v1.10.7 // indirect
46+
github.com/containerd/go-cni v1.1.13 // indirect
47+
github.com/containernetworking/cni v1.3.0 // indirect
48+
github.com/cosi-project/runtime v1.12.0 // indirect
4949
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
5050
github.com/distribution/reference v0.6.0 // indirect
5151
github.com/drone/envsubst/v2 v2.0.0-20210730161058-179042472c46 // indirect
5252
github.com/dustin/go-humanize v1.0.1 // indirect
5353
github.com/emicklei/go-restful/v3 v3.12.2 // indirect
5454
github.com/evanphx/json-patch/v5 v5.9.11 // indirect
5555
github.com/felixge/httpsnoop v1.0.4 // indirect
56-
github.com/fsnotify/fsnotify v1.8.0 // indirect
56+
github.com/fsnotify/fsnotify v1.9.0 // indirect
5757
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
5858
github.com/gertd/go-pluralize v0.2.1 // indirect
5959
github.com/ghodss/yaml v1.0.0 // indirect
@@ -67,25 +67,25 @@ require (
6767
github.com/gogo/protobuf v1.3.2 // indirect
6868
github.com/golang/protobuf v1.5.4 // indirect
6969
github.com/google/btree v1.1.3 // indirect
70-
github.com/google/cel-go v0.26.0 // indirect
70+
github.com/google/cel-go v0.26.1 // indirect
7171
github.com/google/gnostic-models v0.6.8 // indirect
7272
github.com/google/go-github/v53 v53.2.0 // indirect
7373
github.com/google/go-querystring v1.1.0 // indirect
7474
github.com/google/gofuzz v1.2.0 // indirect
7575
github.com/google/uuid v1.6.0 // indirect
76-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.3 // indirect
76+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.3 // indirect
7777
github.com/hashicorp/errwrap v1.1.0 // indirect
7878
github.com/hashicorp/go-multierror v1.1.1 // indirect
7979
github.com/huandu/xstrings v1.5.0 // indirect
8080
github.com/inconshreveable/mousetrap v1.1.0 // indirect
8181
github.com/josharian/intern v1.0.0 // indirect
8282
github.com/josharian/native v1.1.0 // indirect
83-
github.com/jsimonetti/rtnetlink/v2 v2.0.5 // indirect
83+
github.com/jsimonetti/rtnetlink/v2 v2.1.0 // indirect
8484
github.com/json-iterator/go v1.1.12 // indirect
8585
github.com/mailru/easyjson v0.7.7 // indirect
8686
github.com/mdlayher/ethtool v0.4.0 // indirect
8787
github.com/mdlayher/genetlink v1.3.2 // indirect
88-
github.com/mdlayher/netlink v1.7.2 // indirect
88+
github.com/mdlayher/netlink v1.8.0 // indirect
8989
github.com/mdlayher/socket v0.5.1 // indirect
9090
github.com/mitchellh/copystructure v1.2.0 // indirect
9191
github.com/mitchellh/reflectwalk v1.0.2 // indirect
@@ -108,9 +108,9 @@ require (
108108
github.com/sagikazarmark/locafero v0.7.0 // indirect
109109
github.com/sasha-s/go-deadlock v0.3.5 // indirect
110110
github.com/shopspring/decimal v1.4.0 // indirect
111-
github.com/siderolabs/gen v0.8.5 // indirect
111+
github.com/siderolabs/gen v0.8.6 // indirect
112112
github.com/siderolabs/net v0.4.0 // indirect
113-
github.com/siderolabs/protoenc v0.2.2 // indirect
113+
github.com/siderolabs/protoenc v0.2.4 // indirect
114114
github.com/sourcegraph/conc v0.3.0 // indirect
115115
github.com/spf13/afero v1.12.0 // indirect
116116
github.com/spf13/cast v1.7.1 // indirect
@@ -122,28 +122,29 @@ require (
122122
github.com/x448/float16 v0.8.4 // indirect
123123
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
124124
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.54.0 // indirect
125-
go.opentelemetry.io/otel v1.35.0 // indirect
125+
go.opentelemetry.io/otel v1.37.0 // indirect
126126
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.28.0 // indirect
127127
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.27.0 // indirect
128-
go.opentelemetry.io/otel/metric v1.35.0 // indirect
129-
go.opentelemetry.io/otel/sdk v1.35.0 // indirect
130-
go.opentelemetry.io/otel/trace v1.35.0 // indirect
128+
go.opentelemetry.io/otel/metric v1.37.0 // indirect
129+
go.opentelemetry.io/otel/sdk v1.37.0 // indirect
130+
go.opentelemetry.io/otel/trace v1.37.0 // indirect
131131
go.opentelemetry.io/proto/otlp v1.3.1 // indirect
132132
go.uber.org/multierr v1.11.0 // indirect
133133
go.uber.org/zap v1.27.0 // indirect
134-
golang.org/x/crypto v0.38.0 // indirect
134+
go.yaml.in/yaml/v4 v4.0.0-rc.3 // indirect
135+
golang.org/x/crypto v0.44.0 // indirect
135136
golang.org/x/exp v0.0.0-20250128182459-e0ece0dbea4c // indirect
136-
golang.org/x/net v0.40.0 // indirect
137-
golang.org/x/oauth2 v0.28.0 // indirect
138-
golang.org/x/sync v0.15.0 // indirect
139-
golang.org/x/term v0.32.0 // indirect
140-
golang.org/x/text v0.25.0 // indirect
141-
golang.org/x/time v0.11.0 // indirect
137+
golang.org/x/net v0.47.0 // indirect
138+
golang.org/x/oauth2 v0.30.0 // indirect
139+
golang.org/x/sync v0.18.0 // indirect
140+
golang.org/x/term v0.37.0 // indirect
141+
golang.org/x/text v0.31.0 // indirect
142+
golang.org/x/time v0.14.0 // indirect
142143
gomodules.xyz/jsonpatch/v2 v2.5.0 // indirect
143-
google.golang.org/genproto/googleapis/api v0.0.0-20250715232539-7130f93afb79 // indirect
144-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250715232539-7130f93afb79 // indirect
145-
google.golang.org/grpc v1.73.0 // indirect
146-
google.golang.org/protobuf v1.36.6 // indirect
144+
google.golang.org/genproto/googleapis/api v0.0.0-20251111163417-95abcf5c77ba // indirect
145+
google.golang.org/genproto/googleapis/rpc v0.0.0-20251111163417-95abcf5c77ba // indirect
146+
google.golang.org/grpc v1.76.0 // indirect
147+
google.golang.org/protobuf v1.36.10 // indirect
147148
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
148149
gopkg.in/inf.v0 v0.9.1 // indirect
149150
gopkg.in/yaml.v3 v3.0.1 // indirect

0 commit comments

Comments
 (0)