Skip to content

Commit

Permalink
fix eksctl getting started guide create cluster command (#1362)
Browse files Browse the repository at this point in the history
  • Loading branch information
bwagner5 committed Feb 16, 2022
1 parent 1873123 commit a301ce8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion website/content/en/preview/getting-started/_index.md
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion website/content/en/v0.6.3/getting-started/_index.md
Expand Up @@ -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
Expand Down

0 comments on commit a301ce8

Please sign in to comment.