From 3a9caf1888c3dcea8f30f9334a72993ce8c26273 Mon Sep 17 00:00:00 2001 From: Kevin Reeuwijk Date: Tue, 22 Oct 2024 14:59:29 +0200 Subject: [PATCH] customEndpointPort must be an integer (#4401) * customEndpointPort must be an integer * docs: remove broken deeplink on pack * docs: adjust pack link wording --------- Co-authored-by: addetz <43963729+addetz@users.noreply.github.com> (cherry picked from commit 19be01acfaab783796e8a4b987e771f317eb8611) --- docs/deprecated/integrations/kubernetes.md | 8 ++++---- .../clusters/data-center/maas/architecture.md | 4 ++-- .../data-center/maas/create-manage-maas-clusters.md | 4 ++-- docs/docs-content/integrations/kubernetes.md | 8 ++++---- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/docs/deprecated/integrations/kubernetes.md b/docs/deprecated/integrations/kubernetes.md index 66863eabcb..bdfe455d2d 100644 --- a/docs/deprecated/integrations/kubernetes.md +++ b/docs/deprecated/integrations/kubernetes.md @@ -457,7 +457,7 @@ pack: cloud: maas: customEndpoint: "cluster-123.baremetal.company.com" - customEndpointPort: "6443" + customEndpointPort: 6443 ``` In order to prevent the need for per-cluster profile adjustments which can become difficult to maintain at scale, we @@ -474,7 +474,7 @@ pack: cloud: maas: customEndpoint: "{{ .spectro.system.cluster.name }}.baremetal.company.com" - customEndpointPort: "6443" + customEndpointPort: 6443 ``` @@ -848,7 +848,7 @@ pack: cloud: maas: customEndpoint: "cluster-123.baremetal.company.com" - customEndpointPort: "6443" + customEndpointPort: 6443 ``` In order to prevent the need for per-cluster profile adjustments which can become difficult to maintain at scale, we @@ -865,7 +865,7 @@ pack: cloud: maas: customEndpoint: "{{ .spectro.system.cluster.name }}.baremetal.company.com" - customEndpointPort: "6443" + customEndpointPort: 6443 ``` diff --git a/docs/docs-content/clusters/data-center/maas/architecture.md b/docs/docs-content/clusters/data-center/maas/architecture.md index 4a43f4bab5..396cb91d36 100644 --- a/docs/docs-content/clusters/data-center/maas/architecture.md +++ b/docs/docs-content/clusters/data-center/maas/architecture.md @@ -43,8 +43,8 @@ Kubernetes pack allows you to configure a custom API server endpoint for your cl This feature is only supported in Palette eXtended Kubernetes (PXK). Refer to the -section for further guidance. +section of the pack Additional Guidance for further information. diff --git a/docs/docs-content/clusters/data-center/maas/create-manage-maas-clusters.md b/docs/docs-content/clusters/data-center/maas/create-manage-maas-clusters.md index 77a4e3416f..8769293120 100644 --- a/docs/docs-content/clusters/data-center/maas/create-manage-maas-clusters.md +++ b/docs/docs-content/clusters/data-center/maas/create-manage-maas-clusters.md @@ -39,9 +39,9 @@ Kubernetes pack allows you to configure a custom API server endpoint for your cl This feature is only supported in Palette eXtended Kubernetes (PXK). Refer to the -section for further guidance. +section of the pack Additional Guidance for further information. diff --git a/docs/docs-content/integrations/kubernetes.md b/docs/docs-content/integrations/kubernetes.md index 7262729cd6..7ba8f63f35 100644 --- a/docs/docs-content/integrations/kubernetes.md +++ b/docs/docs-content/integrations/kubernetes.md @@ -432,7 +432,7 @@ pack: cloud: maas: customEndpoint: "cluster-123.baremetal.company.com" - customEndpointPort: "6443" + customEndpointPort: 6443 ``` In order to prevent the need for per-cluster profile adjustments which can become difficult to maintain at scale, we @@ -449,7 +449,7 @@ pack: cloud: maas: customEndpoint: "{{ .spectro.system.cluster.name }}.baremetal.company.com" - customEndpointPort: "6443" + customEndpointPort: 6443 ``` @@ -789,7 +789,7 @@ pack: cloud: maas: customEndpoint: "cluster-123.baremetal.company.com" - customEndpointPort: "6443" + customEndpointPort: 6443 ``` In order to prevent the need for per-cluster profile adjustments which can become difficult to maintain at scale, we @@ -806,7 +806,7 @@ pack: cloud: maas: customEndpoint: "{{ .spectro.system.cluster.name }}.baremetal.company.com" - customEndpointPort: "6443" + customEndpointPort: 6443 ```