Skip to content

Commit db97e09

Browse files
committed
chore: bump Kubernetes version to 1.34.2
Updated the default Kubernetes version to 1.34.2 and adjusted related version constants in the integration script and Go files. Signed-off-by: Utku Ozdemir <[email protected]>
1 parent cecb969 commit db97e09

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

frontend/src/api/resources.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export const samlSessionHeader = "saml-session";
2525
export const SignedRedirect = "v1:";
2626
export const workloadProxyPublicKeyIdCookie = "publicKeyId";
2727
export const workloadProxyPublicKeyIdSignatureBase64Cookie = "publicKeyIdSignatureBase64";
28-
export const DefaultKubernetesVersion = "1.34.1";
28+
export const DefaultKubernetesVersion = "1.34.2";
2929
export const installDiskMinSize = 5e+09;
3030
export const MaxJoinTokenNameLength = 16;
3131
export const authPublicKeyIDQueryParam = "public-key-id";

hack/test/integration.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ LATEST_STABLE_OMNI=$(git tag -l --sort=-version:refname HEAD "v*" | grep -E '^v?
2424
TALOS_VERSION=1.11.5
2525
ENABLE_TALOS_PRERELEASE_VERSIONS=false
2626
ANOTHER_OMNI_VERSION="${ANOTHER_OMNI_VERSION:-$LATEST_STABLE_OMNI}"
27-
KUBERNETES_VERSION=1.34.1
27+
KUBERNETES_VERSION=1.34.2
2828

2929
ARTIFACTS=_out
3030
JOIN_TOKEN=testonly

internal/pkg/constants/versions.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ const MinDiscoveredTalosVersion = "1.3.0"
2020
// DefaultKubernetesVersion is pre-selected in the UI and used in the integration tests.
2121
//
2222
// tsgen:DefaultKubernetesVersion
23-
const DefaultKubernetesVersion = "1.34.1"
23+
const DefaultKubernetesVersion = "1.34.2"
2424

2525
// AnotherKubernetesVersion is used in the integration tests for Kubernetes upgrade.
26-
const AnotherKubernetesVersion = "1.33.5"
26+
const AnotherKubernetesVersion = "1.33.6"
2727

2828
// MinKubernetesVersion allowed to be used when creating the cluster.
2929
const MinKubernetesVersion = "1.24.0"

0 commit comments

Comments
 (0)