Skip to content

Commit 055add7

Browse files
committed
release(v1.13.0-alpha.1): prepare release
This is the official v1.13.0-alpha.1 release. Signed-off-by: Noel Georgi <git@frezbo.dev>
1 parent 900516e commit 055add7

File tree

7 files changed

+602
-8
lines changed

7 files changed

+602
-8
lines changed

CHANGELOG.md

Lines changed: 593 additions & 0 deletions
Large diffs are not rendered by default.

cmd/talosctl/cmd/talos/image.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -558,6 +558,7 @@ var imageIntegrationCmd = &cobra.Command{
558558
"docker.io/library/alpine:latest",
559559
"ghcr.io/siderolabs/talosctl:latest",
560560
"registry.k8s.io/kube-apiserver:v1.27.0",
561+
"registry.k8s.io/kube-apiserver:v1.27.1",
561562
imageIntegrationCmdFlags.registryAndUser + "/installer:" +
562563
imageIntegrationCmdFlags.installerTag,
563564
imageIntegrationCmdFlags.registryAndUser + "/talos:" +

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ require (
162162
github.com/siderolabs/net v0.4.0
163163
github.com/siderolabs/proto-codec v0.1.3
164164
github.com/siderolabs/siderolink v0.3.15
165-
github.com/siderolabs/talos/pkg/machinery v1.13.0-alpha.0
165+
github.com/siderolabs/talos/pkg/machinery v1.13.0-alpha.1
166166
github.com/sirupsen/logrus v1.9.4-0.20230606125235-dd1b4c2e81af
167167
github.com/spf13/cobra v1.10.1
168168
github.com/spf13/pflag v1.0.10

hack/release.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ The switch and inventory backfill is automatic and no action is needed from the
9999
[notes.talosctl_images_talos_bundle]
100100
title = "`talosctl images talos-bundle` can ignore reaching to the registry"
101101
description = """\
102-
The `talosctl images talos-bundle` command now accepts optional `--ovelays` and `--extensions` flags.
102+
The `talosctl images talos-bundle` command now accepts optional `--overlays` and `--extensions` flags.
103103
If those are set to `false`, the command will not attempt to reach out to the container registry to fetch the latest versions and digests of the overlays and extensions.
104104
"""
105105

pkg/machinery/gendata/data/tag

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v1.13.0-alpha.0
1+
v1.13.0-alpha.1

pkg/machinery/version/os-release

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
NAME="Talos"
22
ID=talos
3-
VERSION_ID=v1.13.0-alpha.0
4-
PRETTY_NAME="Talos (v1.13.0-alpha.0)"
3+
VERSION_ID=v1.13.0-alpha.1
4+
PRETTY_NAME="Talos (v1.13.0-alpha.1)"
55
HOME_URL="https://www.talos.dev/"
66
BUG_REPORT_URL="https://github.com/siderolabs/talos/issues"
77
VENDOR_NAME="Sidero Labs"

website/content/v1.13/reference/cli.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ talosctl cluster create dev [flags]
134134
--bad-rtc launch VM with bad RTC state
135135
--cidr string CIDR of the cluster network (IPv4, ULA network for IPv6 is derived in automated way) (default "10.5.0.0/24")
136136
--cni-bin-path strings search path for CNI binaries (default [/home/user/.talos/cni/bin])
137-
--cni-bundle-url string URL to download CNI bundle from (default "https://github.com/siderolabs/talos/releases/download/v1.13.0-alpha.0/talosctl-cni-bundle-${ARCH}.tar.gz")
137+
--cni-bundle-url string URL to download CNI bundle from (default "https://github.com/siderolabs/talos/releases/download/v1.13.0-alpha.1/talosctl-cni-bundle-${ARCH}.tar.gz")
138138
--cni-cache-dir string CNI cache directory path (default "/home/user/.talos/cni/cache")
139139
--cni-conf-dir string CNI config directory path (default "/home/user/.talos/cni/conf.d")
140140
--config-injection-method string a method to inject machine config: default is HTTP server, 'metal-iso' to mount an ISO
@@ -348,7 +348,7 @@ talosctl cluster create dev [flags]
348348
--bad-rtc launch VM with bad RTC state
349349
--cidr string CIDR of the cluster network (IPv4, ULA network for IPv6 is derived in automated way) (default "10.5.0.0/24")
350350
--cni-bin-path strings search path for CNI binaries (default [/home/user/.talos/cni/bin])
351-
--cni-bundle-url string URL to download CNI bundle from (default "https://github.com/siderolabs/talos/releases/download/v1.13.0-alpha.0/talosctl-cni-bundle-${ARCH}.tar.gz")
351+
--cni-bundle-url string URL to download CNI bundle from (default "https://github.com/siderolabs/talos/releases/download/v1.13.0-alpha.1/talosctl-cni-bundle-${ARCH}.tar.gz")
352352
--cni-cache-dir string CNI cache directory path (default "/home/user/.talos/cni/cache")
353353
--cni-conf-dir string CNI config directory path (default "/home/user/.talos/cni/conf.d")
354354
--config-injection-method string a method to inject machine config: default is HTTP server, 'metal-iso' to mount an ISO
@@ -3295,7 +3295,7 @@ talosctl upgrade [flags]
32953295
-e, --endpoints strings override default endpoints in Talos configuration
32963296
-f, --force force the upgrade (skip checks on etcd health and members, might lead to data loss)
32973297
-h, --help help for upgrade
3298-
-i, --image string the container image to use for performing the install (default "ghcr.io/siderolabs/installer:v1.13.0-alpha.0")
3298+
-i, --image string the container image to use for performing the install (default "ghcr.io/siderolabs/installer:v1.13.0-alpha.1")
32993299
--insecure upgrade using the insecure (encrypted with no auth) maintenance service
33003300
-n, --nodes strings target the specified nodes
33013301
-m, --reboot-mode string select the reboot mode during upgrade. Mode "powercycle" bypasses kexec. Valid values are: ["default" "powercycle"]. (default "default")

0 commit comments

Comments
 (0)