Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion client/pkg/constants/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const SecureBoot = "secureboot"

// DefaultTalosVersion is pre-selected in the UI, default image and used in the integration tests.
// tsgen:DefaultTalosVersion
const DefaultTalosVersion = "1.13.5"
const DefaultTalosVersion = "1.13.8"

// MinTalosVersion allowed to be used when creating the cluster.
// tsgen:MinTalosVersion
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/api/resources.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ export const samlSessionHeader = "saml-session";
export const SignedRedirect = "v1:";
export const workloadProxyPublicKeyIdCookie = "publicKeyId";
export const workloadProxyPublicKeyIdSignatureBase64Cookie = "publicKeyIdSignatureBase64";
export const DefaultKubernetesVersion = "1.36.2";
export const DefaultKubernetesVersion = "1.36.3";
export const installDiskMinSize = 5e+09;
export const MaxJoinTokenNameLength = 16;
export const authPublicKeyIDQueryParam = "public-key-id";
export const SecureBoot = "secureboot";
export const DefaultTalosVersion = "1.13.5";
export const DefaultTalosVersion = "1.13.8";
export const MinTalosVersion = "1.9.0";
export const LatestSupportedTalosVersion = "1.13";
export const PatchWeightInstallDisk = 0;
Expand Down
8 changes: 4 additions & 4 deletions hack/test/common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@ else
LATEST_STABLE_OMNI=$(head -n 1 <<<"${STABLE_OMNI_TAGS}")
fi

export TALOS_VERSION=1.13.5
export KUBERNETES_VERSION=1.36.1
export TALOS_VERSION=1.13.8
export KUBERNETES_VERSION=1.36.3
# To use in:
# - Omni upgrade tests, to prevent Talos changes interfering with Omni changes
# - Talos minor upgrade tests
export STABLE_TALOS_VERSION=1.12.8
export STABLE_TALOS_VERSION=1.12.11
export ANOTHER_OMNI_VERSION="${ANOTHER_OMNI_VERSION:-$LATEST_STABLE_OMNI}"
export ANOTHER_KUBERNETES_VERSION=1.35.5
export ANOTHER_KUBERNETES_VERSION=1.35.7

export INTEGRATION_PREPARE_TEST_ARGS="${INTEGRATION_PREPARE_TEST_ARGS:-}"
export ARTIFACTS=_out
Expand Down
8 changes: 4 additions & 4 deletions internal/pkg/constants/versions.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,24 +14,24 @@ import (
)

// AnotherTalosVersion is used in the integration tests for Talos upgrade.
const AnotherTalosVersion = "1.13.2"
const AnotherTalosVersion = "1.13.7"

// StableTalosVersion is used in the integration tests for Talos upgrade between minor versions.
const StableTalosVersion = "1.12.8"
const StableTalosVersion = "1.12.11"

// MinDiscoveredTalosVersion makes Omni pull the versions from this point.
const MinDiscoveredTalosVersion = "1.3.0"

// DefaultKubernetesVersion is pre-selected in the UI and used in the integration tests.
//
// tsgen:DefaultKubernetesVersion
const DefaultKubernetesVersion = "1.36.2"
const DefaultKubernetesVersion = "1.36.3"

// DefaultTalosVersion to be used in the tests.
const DefaultTalosVersion = constants.DefaultTalosVersion

// AnotherKubernetesVersion is used in the integration tests for Kubernetes upgrade.
const AnotherKubernetesVersion = "1.35.6"
const AnotherKubernetesVersion = "1.35.7"

// MinDiscoveredKubernetesVersion makes Omni pull the versions from this point.
const MinDiscoveredKubernetesVersion = "1.23.0"
Expand Down
Loading