From 80aad96499cf60af74f8ce70687a7a3f4c4f02bb Mon Sep 17 00:00:00 2001 From: Geoffrey Cline Date: Fri, 23 Jul 2021 15:46:26 -0500 Subject: [PATCH] fix link to eks-config.yaml change link to non-fargate version, also use shorter link --- website/content/en/docs/getting-started/_index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/content/en/docs/getting-started/_index.md b/website/content/en/docs/getting-started/_index.md index c5e7202add71..7f8918654455 100644 --- a/website/content/en/docs/getting-started/_index.md +++ b/website/content/en/docs/getting-started/_index.md @@ -57,7 +57,7 @@ KARPENTER_VERSION=$(curl -fsSL \ Create a cluster with `eksctl`. The [example configuration](eks-config.yaml) file specifies a basic cluster (name, region), and an IAM role for Karpenter to use. ```bash -curl -fsSL https://raw.githubusercontent.com/awslabs/karpenter/"${KARPENTER_VERSION}"/pkg/cloudprovider/aws/docs/eks-config.yaml \ +curl -fsSL https://www.karpenter.sh/docs/getting-started/eks-config.yaml \ | envsubst \ | eksctl create cluster -f - ```