From 339d6497baf12a79240999eaeb74a0d4cbfd6a96 Mon Sep 17 00:00:00 2001 From: Dario Tranchitella Date: Thu, 6 Feb 2025 09:29:08 +0100 Subject: [PATCH] feat: supporting kubernetes up to v1.32.1 (#686) * feat: supporting kubernetes up to v1.32.1 Signed-off-by: Dario Tranchitella * docs: styling for enums Signed-off-by: Dario Tranchitella --------- Signed-off-by: Dario Tranchitella --- docs/content/reference/api.md | 2 ++ internal/upgrade/kubeadm_version.go | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/content/reference/api.md b/docs/content/reference/api.md index 72b0e10..c312387 100644 --- a/docs/content/reference/api.md +++ b/docs/content/reference/api.md @@ -13465,6 +13465,7 @@ Kubernetes specification for tenant control plane List of enabled Admission Controllers for the Tenant cluster. Full reference available here: https://kubernetes.io/docs/reference/access-authn-authz/admission-controllers

+ Enum: AlwaysAdmit, AlwaysDeny, AlwaysPullImages, CertificateApproval, CertificateSigning, CertificateSubjectRestriction, DefaultIngressClass, DefaultStorageClass, DefaultTolerationSeconds, DenyEscalatingExec, DenyExecOnPrivileged, DenyServiceExternalIPs, EventRateLimit, ExtendedResourceToleration, ImagePolicyWebhook, LimitPodHardAntiAffinityTopology, LimitRanger, MutatingAdmissionWebhook, NamespaceAutoProvision, NamespaceExists, NamespaceLifecycle, NodeRestriction, OwnerReferencesPermissionEnforcement, PersistentVolumeClaimResize, PersistentVolumeLabel, PodNodeSelector, PodSecurity, PodSecurityPolicy, PodTolerationRestriction, Priority, ResourceQuota, RuntimeClass, SecurityContextDeny, ServiceAccount, StorageObjectInUseProtection, TaintNodesByCondition, ValidatingAdmissionWebhook
Default: [CertificateApproval CertificateSigning CertificateSubjectRestriction DefaultIngressClass DefaultStorageClass DefaultTolerationSeconds LimitRanger MutatingAdmissionWebhook NamespaceLifecycle PersistentVolumeClaimResize Priority ResourceQuota RuntimeClass ServiceAccount StorageObjectInUseProtection TaintNodesByCondition ValidatingAdmissionWebhook]
false @@ -13504,6 +13505,7 @@ https://kubernetes.io/docs/tasks/administer-cluster/kubeadm/configure-cgroup-dri Ordered list of the preferred NodeAddressTypes to use for kubelet connections. Default to Hostname, InternalIP, ExternalIP.

+ Enum: Hostname, InternalIP, ExternalIP, InternalDNS, ExternalDNS
Default: [Hostname InternalIP ExternalIP]
false diff --git a/internal/upgrade/kubeadm_version.go b/internal/upgrade/kubeadm_version.go index 6c20cc9..e9b4c4f 100644 --- a/internal/upgrade/kubeadm_version.go +++ b/internal/upgrade/kubeadm_version.go @@ -4,5 +4,5 @@ package upgrade const ( - KubeadmVersion = "v1.31.4" + KubeadmVersion = "v1.32.1" )