Skip to content

Commit b7faf9e

Browse files
committed
feat: update Talos machinery to 0.13.0
This prepares machine configuration to use latest 0.13.0 features. One of the notable changes is the support for ECDSA-SHA256. Signed-off-by: Andrey Smirnov <[email protected]>
1 parent 04742b9 commit b7faf9e

File tree

4 files changed

+49
-44
lines changed

4 files changed

+49
-44
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ NAME := cluster-api-talos-controller
99
ARTIFACTS := _out
1010

1111
TOOLS ?= ghcr.io/talos-systems/tools:v0.8.0-alpha.0-3-g2790b55
12-
PKGS ?= v0.8.0-alpha.0-3-gdb90f93
13-
TALOS_VERSION ?= v0.12.1
14-
K8S_VERSION ?= 1.21.4
12+
PKGS ?= v0.8.0
13+
TALOS_VERSION ?= v0.13.0
14+
K8S_VERSION ?= 1.22.2
1515

1616
CONTROLLER_GEN_VERSION ?= v0.6.2
1717
CONVERSION_GEN_VERSION ?= v0.21.3

go.mod

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ require (
88
github.com/go-logr/logr v0.4.0
99
github.com/spf13/pflag v1.0.5
1010
github.com/stretchr/testify v1.7.0
11-
github.com/talos-systems/crypto v0.3.2
12-
github.com/talos-systems/talos/pkg/machinery v0.12.3
13-
golang.org/x/sys v0.0.0-20210817190340-bfb29a6856f2
11+
github.com/talos-systems/crypto v0.3.4
12+
github.com/talos-systems/talos/pkg/machinery v0.13.0
13+
golang.org/x/sys v0.0.0-20210927094055-39ccf1dd6fa6
1414
gopkg.in/yaml.v2 v2.4.0
1515
k8s.io/api v0.21.4
1616
k8s.io/apiextensions-apiserver v0.21.4
@@ -26,9 +26,9 @@ require (
2626
github.com/beorn7/perks v1.0.1 // indirect
2727
github.com/blang/semver v3.5.1+incompatible // indirect
2828
github.com/cespare/xxhash/v2 v2.1.1 // indirect
29-
github.com/containerd/go-cni v1.0.2 // indirect
30-
github.com/containernetworking/cni v0.8.1 // indirect
31-
github.com/cosi-project/runtime v0.0.0-20210707150857-25f235cd0682 // indirect
29+
github.com/containerd/go-cni v1.1.0 // indirect
30+
github.com/containernetworking/cni v1.0.1 // indirect
31+
github.com/cosi-project/runtime v0.0.0-20210906201716-5cb7f5002d77 // indirect
3232
github.com/davecgh/go-spew v1.1.1 // indirect
3333
github.com/docker/distribution v2.7.1+incompatible // indirect
3434
github.com/drone/envsubst/v2 v2.0.0-20210615175204-7bf45dbf5372 // indirect
@@ -52,7 +52,7 @@ require (
5252
github.com/hashicorp/hcl v1.0.0 // indirect
5353
github.com/imdario/mergo v0.3.12 // indirect
5454
github.com/josharian/native v0.0.0-20200817173448-b6b71def0850 // indirect
55-
github.com/jsimonetti/rtnetlink v0.0.0-20210614053835-9c52e516c709 // indirect
55+
github.com/jsimonetti/rtnetlink v0.0.0-20210922080037-435639c8e6a8 // indirect
5656
github.com/json-iterator/go v1.1.11 // indirect
5757
github.com/magiconair/properties v1.8.5 // indirect
5858
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect
@@ -79,7 +79,8 @@ require (
7979
github.com/spf13/jwalterweatherman v1.1.0 // indirect
8080
github.com/spf13/viper v1.8.1 // indirect
8181
github.com/subosito/gotenv v1.2.0 // indirect
82-
github.com/talos-systems/go-blockdevice v0.2.3 // indirect
82+
github.com/talos-systems/go-blockdevice v0.2.4 // indirect
83+
github.com/talos-systems/go-debug v0.2.1 // indirect
8384
github.com/talos-systems/net v0.3.0 // indirect
8485
go.uber.org/atomic v1.7.0 // indirect
8586
go.uber.org/multierr v1.7.0 // indirect
@@ -92,8 +93,8 @@ require (
9293
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac // indirect
9394
gomodules.xyz/jsonpatch/v2 v2.2.0 // indirect
9495
google.golang.org/appengine v1.6.7 // indirect
95-
google.golang.org/genproto v0.0.0-20210722135532-667f2b7c528f // indirect
96-
google.golang.org/grpc v1.40.0 // indirect
96+
google.golang.org/genproto v0.0.0-20210924002016-3dee208752a0 // indirect
97+
google.golang.org/grpc v1.41.0 // indirect
9798
google.golang.org/protobuf v1.27.1 // indirect
9899
gopkg.in/inf.v0 v0.9.1 // indirect
99100
gopkg.in/ini.v1 v1.62.0 // indirect

0 commit comments

Comments
 (0)