diff --git a/hack/docgen.sh b/hack/docgen.sh index 58655b38b2c5..d82dd5373661 100755 --- a/hack/docgen.sh +++ b/hack/docgen.sh @@ -3,7 +3,7 @@ set -euo pipefail compatibilitymatrix() { go run hack/docs/version_compatibility.go hack/docs/compatibility-karpenter.yaml "$(git describe --exact-match --tags || echo "no tag")" - go run hack/docs/compatibilitymetrix_gen_docs.go website/content/en/preview/upgrading/compatibility.md hack/docs/compatibility-karpenter.yaml 6 + go run hack/docs/compatibilitymetrix_gen_docs.go website/content/en/preview/upgrading/compatibility.md hack/docs/compatibility-karpenter.yaml 7 } @@ -11,4 +11,4 @@ compatibilitymatrix go run hack/docs/metrics_gen_docs.go pkg/ ${KARPENTER_CORE_DIR}/pkg website/content/en/preview/reference/metrics.md go run hack/docs/instancetypes_gen_docs.go website/content/en/preview/reference/instance-types.md go run hack/docs/configuration_gen_docs.go website/content/en/preview/reference/settings.md -cd charts/karpenter && helm-docs \ No newline at end of file +cd charts/karpenter && helm-docs diff --git a/pkg/providers/version/version.go b/pkg/providers/version/version.go index 814c6eb3af5d..bde13ae72765 100644 --- a/pkg/providers/version/version.go +++ b/pkg/providers/version/version.go @@ -33,7 +33,7 @@ const ( // If a user runs a karpenter image on a k8s version outside the min and max, // One error message will be fired to notify MinK8sVersion = "1.23" - MaxK8sVersion = "1.28" + MaxK8sVersion = "1.29" ) // Provider get the APIServer version. This will be initialized at start up and allows karpenter to have an understanding of the cluster version