From a301ce8be13f57d985797f1535e7495f9dbf2964 Mon Sep 17 00:00:00 2001 From: Brandon Wagner Date: Wed, 16 Feb 2022 17:42:09 -0600 Subject: [PATCH] fix eksctl getting started guide create cluster command (#1362) --- website/content/en/preview/getting-started/_index.md | 2 +- website/content/en/v0.6.3/getting-started/_index.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/website/content/en/preview/getting-started/_index.md b/website/content/en/preview/getting-started/_index.md index bec04c48975e..a03a568f9ad4 100644 --- a/website/content/en/preview/getting-started/_index.md +++ b/website/content/en/preview/getting-started/_index.md @@ -54,7 +54,7 @@ export AWS_ACCOUNT_ID="$(aws sts get-caller-identity --query Account --output te Create a cluster with `eksctl`. This example configuration file specifies a basic cluster with one initial node and sets up an IAM OIDC provider for the cluster to enable IAM roles for pods: ```bash -eksctl create cluster << 'EOF' +eksctl create cluster -f - << EOF --- apiVersion: eksctl.io/v1alpha5 kind: ClusterConfig diff --git a/website/content/en/v0.6.3/getting-started/_index.md b/website/content/en/v0.6.3/getting-started/_index.md index 8069abd37928..ebbec134f0d4 100644 --- a/website/content/en/v0.6.3/getting-started/_index.md +++ b/website/content/en/v0.6.3/getting-started/_index.md @@ -54,7 +54,7 @@ export AWS_ACCOUNT_ID="$(aws sts get-caller-identity --query Account --output te Create a cluster with `eksctl`. This example configuration file specifies a basic cluster with one initial node and sets up an IAM OIDC provider for the cluster to enable IAM roles for pods: ```bash -eksctl create cluster << 'EOF' +eksctl create cluster -f - << EOF --- apiVersion: eksctl.io/v1alpha5 kind: ClusterConfig