Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
geoffcline committed Feb 7, 2022
1 parent e94f365 commit b044067
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@

---
title: "Getting Started with Karpenter on AWS"
linkTitle: "Getting Started"
title: "Getting Started with Karpenter on AWS with eksctl"
linkTitle: "Getting Started with eksctl"
weight: 10
---

Expand Down Expand Up @@ -144,7 +145,6 @@ helm upgrade --install karpenter karpenter/karpenter --namespace karpenter \
--create-namespace --set serviceAccount.create=false --version {{< param "latest_release_version" >}} \
--set controller.clusterName=${CLUSTER_NAME} \
--set controller.clusterEndpoint=$(aws eks describe-cluster --name ${CLUSTER_NAME} --query "cluster.endpoint" --output json) \
--set aws.defaultInstanceProfile=KarpenterNodeInstanceProfile-${CLUSTER_NAME} \
--wait # for the defaulting webhook to install before creating a Provisioner
```

Expand Down Expand Up @@ -191,6 +191,7 @@ spec:
karpenter.sh/discovery: ${CLUSTER_NAME}
securityGroupSelector:
karpenter.sh/discovery: ${CLUSTER_NAME}
instanceProfile: KarpenterNodeInstanceProfile-${CLUSTER_NAME}
ttlSecondsAfterEmpty: 30
EOF
```
Expand Down Expand Up @@ -269,6 +270,8 @@ aws ec2 describe-launch-templates \
eksctl delete cluster --name ${CLUSTER_NAME}
```

---

## Next Steps:

- [Install Grafana dashboards]({{ ref .. "next-steps-grafana" }}) to monitor Karpenter

0 comments on commit b044067

Please sign in to comment.