Skip to content

Commit

Permalink
Fixed references to cloudformation template
Browse files Browse the repository at this point in the history
  • Loading branch information
ellistarn committed Jan 18, 2022
1 parent a304cb5 commit 8b9066b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion website/content/en/preview/getting-started/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,8 @@ First, create the IAM resources using AWS CloudFormation.

```bash
TEMPOUT=$(mktemp)
curl -fsSL https://karpenter.sh/docs/getting-started/cloudformation.yaml > $TEMPOUT \

curl -fsSL https://karpenter.sh{{< relref "." >}}cloudformation.yaml > $TEMPOUT \
&& aws cloudformation deploy \
--stack-name Karpenter-${CLUSTER_NAME} \
--template-file ${TEMPOUT} \
Expand Down
2 changes: 1 addition & 1 deletion website/content/en/v0.5.3/getting-started/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ First, create the IAM resources using AWS CloudFormation.

```bash
TEMPOUT=$(mktemp)
curl -fsSL https://karpenter.sh/docs/getting-started/cloudformation.yaml > $TEMPOUT \
curl -fsSL https://karpenter.sh{{< relref "." >}}cloudformation.yaml > $TEMPOUT \
&& aws cloudformation deploy \
--stack-name Karpenter-${CLUSTER_NAME} \
--template-file ${TEMPOUT} \
Expand Down

0 comments on commit 8b9066b

Please sign in to comment.