Skip to content

Commit

Permalink
release(v1.5.0-alpha.0): prepare release
Browse files Browse the repository at this point in the history
This is the official v1.5.0-alpha.0 release.

Signed-off-by: Andrey Smirnov <andrey.smirnov@talos-systems.com>
  • Loading branch information
smira committed May 19, 2023
1 parent 383471c commit eba8185
Show file tree
Hide file tree
Showing 9 changed files with 250 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .conform.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ policies:
- talosctl
- kernel
- security
- ^v1.4
- ^v1.5
- type: license
spec:
skipPaths:
Expand Down
240 changes: 240 additions & 0 deletions CHANGELOG.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion cmd/installer/pkg/install/preflight.go
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ func (checks *PreflightChecks) talosVersion(ctx context.Context) error {
return fmt.Errorf("error parsing installer Talos version: %w", err)
}

return checks.hostTalosVersion.UpgradeableFrom(checks.installerTalosVersion)
return checks.installerTalosVersion.UpgradeableFrom(checks.hostTalosVersion)
}

type k8sVersions struct {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ require (
github.com/siderolabs/grpc-proxy v0.4.0
github.com/siderolabs/net v0.4.0
github.com/siderolabs/siderolink v0.3.1
github.com/siderolabs/talos/pkg/machinery v1.4.4
github.com/siderolabs/talos/pkg/machinery v1.5.0-alpha.0
github.com/spf13/cobra v1.7.0
github.com/spf13/pflag v1.0.5
github.com/stretchr/testify v1.8.2
Expand Down
4 changes: 2 additions & 2 deletions hack/cloud-image-uploader/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,13 +91,13 @@ func run() error {
return aws.Upload(ctx)
})

g.Go(func() error {
/*g.Go(func() error {
azure := AzureUploader{
Options: DefaultOptions,
}
return azure.AzureGalleryUpload(ctx)
})
})*/

if err = g.Wait(); err != nil {
return fmt.Errorf("failed: %w", err)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://talos.dev/v1.4/schemas/v1alpha1_config.schema.json",
"$id": "https://talos.dev/v1.5/schemas/v1alpha1_config.schema.json",
"$ref": "#/$defs/Config",
"$defs": {
"APIServerConfig": {
Expand Down
2 changes: 1 addition & 1 deletion pkg/machinery/gendata/data/tag
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.4.0-alpha.4
v1.5.0-alpha.0
4 changes: 2 additions & 2 deletions website/content/v1.5/reference/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ talosctl cluster create [flags]
--bad-rtc launch VM with bad RTC state (QEMU only)
--cidr string CIDR of the cluster network (IPv4, ULA network for IPv6 is derived in automated way) (default "10.5.0.0/24")
--cni-bin-path strings search path for CNI binaries (VM only) (default [/home/user/.talos/cni/bin])
--cni-bundle-url string URL to download CNI bundle from (VM only) (default "https://github.com/siderolabs/talos/releases/download/v1.4.0-alpha.4/talosctl-cni-bundle-${ARCH}.tar.gz")
--cni-bundle-url string URL to download CNI bundle from (VM only) (default "https://github.com/siderolabs/talos/releases/download/v1.5.0-alpha.0/talosctl-cni-bundle-${ARCH}.tar.gz")
--cni-cache-dir string CNI cache directory path (VM only) (default "/home/user/.talos/cni/cache")
--cni-conf-dir string CNI config directory path (VM only) (default "/home/user/.talos/cni/conf.d")
--config-patch stringArray patch generated machineconfigs (applied to all node types), use @file to read a patch from file
Expand Down Expand Up @@ -2622,7 +2622,7 @@ talosctl upgrade [flags]
--debug debug operation from kernel logs. --wait is set to true when this flag is set
-f, --force force the upgrade (skip checks on etcd health and members, might lead to data loss)
-h, --help help for upgrade
-i, --image string the container image to use for performing the install (default "ghcr.io/siderolabs/installer:v1.4.0-alpha.4")
-i, --image string the container image to use for performing the install (default "ghcr.io/siderolabs/installer:v1.5.0-alpha.0")
--insecure upgrade using the insecure (encrypted with no auth) maintenance service
-p, --preserve preserve data
-s, --stage stage the upgrade to perform it after a reboot
Expand Down
2 changes: 1 addition & 1 deletion website/content/v1.5/schemas/v1alpha1_config.schema.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://talos.dev/v1.4/schemas/v1alpha1_config.schema.json",
"$id": "https://talos.dev/v1.5/schemas/v1alpha1_config.schema.json",
"$ref": "#/$defs/Config",
"$defs": {
"APIServerConfig": {
Expand Down

0 comments on commit eba8185

Please sign in to comment.