Skip to content

Commit

Permalink
update docs with --wait for helm chart install to avoid race
Browse files Browse the repository at this point in the history
  • Loading branch information
aaroniscode committed Oct 20, 2021
1 parent 60a6b9a commit 2cc9293
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion website/content/en/docs/getting-started/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,11 +153,15 @@ Use helm to deploy Karpenter to the cluster.
We created a Kubernetes service account when we created the cluster using
eksctl. Thus, we don't need the helm chart to do that.

The --wait flag is only neccessary if a Provisioner is created immediately the Helm install. This will allow
for the Mutating Admission Webhook configuration to take affect and for the Webhook Pod to start.

```bash
helm repo add karpenter https://awslabs.github.io/karpenter/charts
helm repo update
helm upgrade --install karpenter karpenter/karpenter --namespace karpenter \
--create-namespace --set serviceAccount.create=false --version 0.4.0
--create-namespace --set serviceAccount.create=false --version 0.4.0 \
--wait
```

### Enable Debug Logging (optional)
Expand Down

0 comments on commit 2cc9293

Please sign in to comment.