File tree Expand file tree Collapse file tree 2 files changed +18
-0
lines changed
Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change 1+ # k8s Cluster Maintenance
2+
3+ ## Worker nodes disk filling up
4+
5+ - The worker nodes pull images over time that they often
6+ no longer need (e.g. app upgrades).
7+ - These images can fill up the disk space.
8+ - To clean them:
9+ 1 . Access AWS EKS and go to Compute section.
10+ 2 . Click on a node, then click through to the EC2 instance.
11+ 3 . Connect using SSM Session Manager (the only option).
12+ 4 . Run cleanup commands for containerd:
13+
14+ ``` bash
15+ sudo nerdctl image prune -a
16+ sudo nerdctl system prune
17+ ```
Original file line number Diff line number Diff line change 6060 - Using The Cluster :
6161 - Connecting to the cluster : usage/connecting-to-cluster.md
6262 - Routing to the cluster : usage/routing-to-cluster-apps.md
63+ - Cluster maintenance : usage/cluster-maintenance.md
6364 - Tutorials :
6465 - Intro to Kubernetes : tutorial/k8s-intro.md
6566 - Deploying Apps : tutorial/deploying-apps.md
You can’t perform that action at this time.
0 commit comments