Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Oguzhan Yilmaz committed Nov 3, 2023
1 parent d1c8f12 commit 226378a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@

```bash
# Get the current env vars of aws-node
kubectl get daemonset aws-node -n kube-system -o jsonpath='{.spec.template.spec.containers[0].env}' | jq -r '.[] | .name + "=" + .value'
kubectl get daemonset aws-node -n kube-system \
-o jsonpath='{.spec.template.spec.containers[0].env}' \
| jq -r '.[] | .name + "=" + .value'

# Enable custom network config in aws-node
kubectl set env daemonset aws-node -n kube-system AWS_VPC_K8S_CNI_CUSTOM_NETWORK_CFG=true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,4 +118,5 @@ kubectl -n karpenter get awsnodetemplate default -o yaml | yq '.status'

### Next Steps

- [Create a load on the cluster to trigger Karpenter](create-load-on-the-cluster.md)
- [Create a load on the cluster to trigger Karpenter](create-load-on-the-cluster.md)
- [Demo Troubleshooting](troubleshooting.md)
1 change: 1 addition & 0 deletions docs/todo.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
- https://aws.amazon.com/blogs/containers/karpenter-graduates-to-beta/
- v1beta is out
- full example yaml files
- multi nodeclass strategy
- arm and x64 (would require two different nodeclasses)
Expand Down

0 comments on commit 226378a

Please sign in to comment.