From ba291fdadfc95a3aad0c304775b2f7fe39b879f0 Mon Sep 17 00:00:00 2001 From: Kevin McDermott Date: Tue, 25 Jul 2023 19:19:17 +0100 Subject: [PATCH] Try indenting to see if pre-integration tests pass. --- .../managing-clusters-without-capi.mdx | 86 +++++++++---------- 1 file changed, 43 insertions(+), 43 deletions(-) diff --git a/website/docs/cluster-management/managing-clusters-without-capi.mdx b/website/docs/cluster-management/managing-clusters-without-capi.mdx index fe606c7f158..aa174b80695 100644 --- a/website/docs/cluster-management/managing-clusters-without-capi.mdx +++ b/website/docs/cluster-management/managing-clusters-without-capi.mdx @@ -106,49 +106,49 @@ Here's how to create a kubeconfig secret.
Expand to see script ```bash title="static-kubeconfig.sh" -#!/bin/bash - -if [[ -z "$CLUSTER_NAME" ]]; then - echo "Ensure CLUSTER_NAME has been set" - exit 1 -fi - -if [[ -z "$CA_CERTIFICATE" ]]; then - echo "Ensure CA_CERTIFICATE has been set to the path of the CA certificate" - exit 1 -fi - -if [[ -z "$ENDPOINT" ]]; then - echo "Ensure ENDPOINT has been set" - exit 1 -fi - -if [[ -z "$TOKEN" ]]; then - echo "Ensure TOKEN has been set" - exit 1 -fi - -export CLUSTER_CA_CERTIFICATE=$(cat "$CA_CERTIFICATE" | base64) - -envsubst <