Skip to content

Commit 537a4ab

Browse files
committed
feat: bump Talos to 1.1.0
Also update CAPI to the latest 1.1.4. Signed-off-by: Andrey Smirnov <[email protected]> (cherry picked from commit 2f3b21f)
1 parent ef969cc commit 537a4ab

File tree

4 files changed

+103
-186
lines changed

4 files changed

+103
-186
lines changed

Makefile

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

12-
TOOLS ?= ghcr.io/siderolabs/tools:v1.0.0
13-
PKGS ?= v1.0.0
14-
TALOS_VERSION ?= v1.0.0
15-
K8S_VERSION ?= 1.23.5
12+
TOOLS ?= ghcr.io/siderolabs/tools:v1.1.0-1-g134974c
13+
PKGS ?= v1.1.0-8-gfa9a488
14+
TALOS_VERSION ?= v1.1.0
15+
K8S_VERSION ?= 1.24.2
1616

1717
CONTROLLER_GEN_VERSION ?= v0.8.0
18-
CONVERSION_GEN_VERSION ?= v0.23.1
18+
CONVERSION_GEN_VERSION ?= v0.23.5
1919

2020
BUILD := docker buildx build
2121
PLATFORM ?= linux/amd64

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -55,19 +55,19 @@ This provider's versions are compatible with the following versions of Cluster A
5555

5656
This provider's versions are able to install and manage the following versions of Kubernetes:
5757
58-
| | v1.16 | v 1.17 | v1.18 | v1.19 | v1.20 | v1.21 | v1.22 | v1.23 |
59-
| -------------- | ----- | ------ | ----- | ----- | ----- | ----- | ----- | ----- |
60-
| CABPT (v0.3.x) | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | |
61-
| CABPT (v0.4.x) | | | | ✓ | ✓ | ✓ | ✓ | ✓ |
62-
| CABPT (v0.5.x) | | | | ✓ | ✓ | ✓ | ✓ | ✓ |
58+
| | v1.16 | v 1.17 | v1.18 | v1.19 | v1.20 | v1.21 | v1.22 | v1.23 | v1.24 |
59+
| -------------- | ----- | ------ | ----- | ----- | ----- | ----- | ----- | ----- | ----- |
60+
| CABPT (v0.3.x) | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | | |
61+
| CABPT (v0.4.x) | | | | ✓ | ✓ | ✓ | ✓ | ✓ | |
62+
| CABPT (v0.5.x) | | | | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
6363
6464
This provider's versions are compatible with the following versions of Talos:
6565

66-
| | v0.11 | v0.12 | v0.13 | v0.14 |
67-
| ---------------- | ----- | ----- | ----- | ----- |
68-
| CABPT (v0.3.x) |||| |
69-
| CABPT (v0.4.x) |||||
70-
| CABPT (v0.5.x) |||||
66+
| | v0.11 | v0.12 | v0.13 | v0.14 | v1.0 | v1.1 |
67+
| ---------------- | ----- | ----- | ----- | ----- | ----- | ----- |
68+
| CABPT (v0.3.x) |||| | | |
69+
| CABPT (v0.4.x) ||||| | |
70+
| CABPT (v0.5.x) |||||||
7171

7272
CABPT generates machine configuration compatible with Talos version specified in the `talosVersion:` field (see below).
7373

@@ -85,7 +85,7 @@ spec:
8585
controlPlaneConfig:
8686
controlplane:
8787
generateType: controlplane
88-
talosVersion: v0.14
88+
talosVersion: v1.1
8989
...
9090
```
9191

@@ -98,7 +98,7 @@ spec:
9898
template:
9999
spec:
100100
generateType: worker
101-
talosVersion: v0.14
101+
talosVersion: v1.1
102102
```
103103

104104
Fields available in the `TalosConfigTemplate` (and `TalosConfig`) resources:
@@ -121,7 +121,7 @@ Machine configuration generated is compatible with the Talos version set in the
121121
```yaml
122122
spec:
123123
generateType: controlplane
124-
talosVersion: v0.14
124+
talosVersion: v1.1
125125
```
126126

127127
### User-supplied Machine Configuration

go.mod

Lines changed: 26 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,25 @@
11
module github.com/talos-systems/cluster-api-bootstrap-provider-talos
22

3-
go 1.17
3+
go 1.18
44

55
require (
66
github.com/AlekSi/pointer v1.2.0
77
github.com/evanphx/json-patch v5.6.0+incompatible
88
github.com/go-logr/logr v1.2.0
9+
github.com/google/go-cmp v0.5.7
910
github.com/spf13/pflag v1.0.5
10-
github.com/stretchr/testify v1.7.0
11+
github.com/stretchr/testify v1.7.1
1112
github.com/talos-systems/crypto v0.3.5
12-
github.com/talos-systems/talos/pkg/machinery v1.0.0
13-
golang.org/x/sys v0.0.0-20220209214540-3681064d5158
13+
github.com/talos-systems/talos/pkg/machinery v1.1.0
14+
golang.org/x/sys v0.0.0-20220408201424-a24fb2fb8a0f
1415
gopkg.in/yaml.v2 v2.4.0
1516
inet.af/netaddr v0.0.0-20211027220019-c74959edd3b6
16-
k8s.io/api v0.23.0
17-
k8s.io/apiextensions-apiserver v0.23.0
18-
k8s.io/apimachinery v0.23.0
19-
k8s.io/client-go v0.23.0
20-
sigs.k8s.io/cluster-api v1.1.3
21-
sigs.k8s.io/controller-runtime v0.11.1
17+
k8s.io/api v0.23.5
18+
k8s.io/apiextensions-apiserver v0.23.5
19+
k8s.io/apimachinery v0.23.5
20+
k8s.io/client-go v0.23.5
21+
sigs.k8s.io/cluster-api v1.1.4
22+
sigs.k8s.io/controller-runtime v0.11.2
2223
)
2324

2425
require (
@@ -33,11 +34,11 @@ require (
3334
github.com/beorn7/perks v1.0.1 // indirect
3435
github.com/blang/semver v3.5.1+incompatible // indirect
3536
github.com/cespare/xxhash/v2 v2.1.1 // indirect
36-
github.com/containerd/go-cni v1.1.3 // indirect
37-
github.com/containernetworking/cni v1.0.1 // indirect
37+
github.com/containerd/go-cni v1.1.5 // indirect
38+
github.com/containernetworking/cni v1.1.0 // indirect
3839
github.com/coredns/caddy v1.1.0 // indirect
3940
github.com/coredns/corefile-migration v1.0.14 // indirect
40-
github.com/cosi-project/runtime v0.0.0-20211216175730-264f8fcd1a4f // indirect
41+
github.com/cosi-project/runtime v0.0.0-20220527181155-95d06feaf8b5 // indirect
4142
github.com/davecgh/go-spew v1.1.1 // indirect
4243
github.com/docker/distribution v2.7.1+incompatible // indirect
4344
github.com/drone/envsubst/v2 v2.0.0-20210730161058-179042472c46 // indirect
@@ -54,7 +55,6 @@ require (
5455
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
5556
github.com/golang/protobuf v1.5.2 // indirect
5657
github.com/google/cel-go v0.9.0 // indirect
57-
github.com/google/go-cmp v0.5.7 // indirect
5858
github.com/google/go-github/v33 v33.0.0 // indirect
5959
github.com/google/go-querystring v1.0.0 // indirect
6060
github.com/google/gofuzz v1.2.0 // indirect
@@ -67,7 +67,7 @@ require (
6767
github.com/imdario/mergo v0.3.12 // indirect
6868
github.com/josharian/intern v1.0.0 // indirect
6969
github.com/josharian/native v1.0.0 // indirect
70-
github.com/jsimonetti/rtnetlink v1.1.0 // indirect
70+
github.com/jsimonetti/rtnetlink v1.2.0 // indirect
7171
github.com/json-iterator/go v1.1.12 // indirect
7272
github.com/magiconair/properties v1.8.5 // indirect
7373
github.com/mailru/easyjson v0.7.6 // indirect
@@ -93,44 +93,45 @@ require (
9393
github.com/prometheus/procfs v0.6.0 // indirect
9494
github.com/ryanuber/go-glob v1.0.0 // indirect
9595
github.com/shopspring/decimal v1.2.0 // indirect
96+
github.com/siderolabs/go-pointer v1.0.0 // indirect
9697
github.com/spf13/afero v1.6.0 // indirect
9798
github.com/spf13/cast v1.4.1 // indirect
9899
github.com/spf13/jwalterweatherman v1.1.0 // indirect
99100
github.com/spf13/viper v1.9.0 // indirect
100101
github.com/stoewer/go-strcase v1.2.0 // indirect
101102
github.com/stretchr/objx v0.2.0 // indirect
102103
github.com/subosito/gotenv v1.2.0 // indirect
103-
github.com/talos-systems/go-blockdevice v0.3.1 // indirect
104+
github.com/talos-systems/go-blockdevice v0.3.2 // indirect
104105
github.com/talos-systems/go-debug v0.2.1 // indirect
105106
github.com/talos-systems/net v0.3.2 // indirect
106107
github.com/valyala/fastjson v1.6.3 // indirect
107108
go.uber.org/atomic v1.7.0 // indirect
108109
go.uber.org/multierr v1.7.0 // indirect
109-
go.uber.org/zap v1.19.1 // indirect
110+
go.uber.org/zap v1.21.0 // indirect
110111
go4.org/intern v0.0.0-20211027215823-ae77deb06f29 // indirect
111112
go4.org/unsafe/assume-no-moving-gc v0.0.0-20211027215541-db492cf91b37 // indirect
112113
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5 // indirect
113114
golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd // indirect
114115
golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 // indirect
115-
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
116+
golang.org/x/sync v0.0.0-20220513210516-0976fa681c29 // indirect
116117
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
117118
golang.org/x/text v0.3.7 // indirect
118119
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac // indirect
119120
gomodules.xyz/jsonpatch/v2 v2.2.0 // indirect
120121
google.golang.org/appengine v1.6.7 // indirect
121-
google.golang.org/genproto v0.0.0-20220228155957-1da8797a5878 // indirect
122-
google.golang.org/grpc v1.44.0 // indirect
123-
google.golang.org/protobuf v1.27.1 // indirect
122+
google.golang.org/genproto v0.0.0-20220531134929-86cf59382f1b // indirect
123+
google.golang.org/grpc v1.46.2 // indirect
124+
google.golang.org/protobuf v1.28.0 // indirect
124125
gopkg.in/inf.v0 v0.9.1 // indirect
125126
gopkg.in/ini.v1 v1.63.2 // indirect
126127
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
127-
k8s.io/apiserver v0.23.0 // indirect
128+
k8s.io/apiserver v0.23.5 // indirect
128129
k8s.io/cluster-bootstrap v0.23.0 // indirect
129-
k8s.io/component-base v0.23.0 // indirect
130+
k8s.io/component-base v0.23.5 // indirect
130131
k8s.io/klog/v2 v2.30.0 // indirect
131132
k8s.io/kube-openapi v0.0.0-20211115234752-e816edb12b65 // indirect
132-
k8s.io/utils v0.0.0-20210930125809-cb0fa318a74b // indirect
133+
k8s.io/utils v0.0.0-20211116205334-6203023598ed // indirect
133134
sigs.k8s.io/json v0.0.0-20211020170558-c049b76a60c6 // indirect
134-
sigs.k8s.io/structured-merge-diff/v4 v4.2.0 // indirect
135+
sigs.k8s.io/structured-merge-diff/v4 v4.2.1 // indirect
135136
sigs.k8s.io/yaml v1.3.0 // indirect
136137
)

0 commit comments

Comments
 (0)