k8s:distributions:rke2
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| k8s:distributions:rke2 [2023/10/24 13:47] – admin | k8s:distributions:rke2 [2023/11/11 18:21] (current) – admin | ||
|---|---|---|---|
| Line 56: | Line 56: | ||
| protect-kernel-defaults: | protect-kernel-defaults: | ||
| ``` | ``` | ||
| + | Create a `/ | ||
| + | ```yaml | ||
| + | mirrors: | ||
| + | docker.io: | ||
| + | endpoint: | ||
| + | - " | ||
| + | ``` | ||
| + | |||
| ### Server | ### Server | ||
| Line 127: | Line 135: | ||
| [Here](https:// | [Here](https:// | ||
| Kubernetes major versions are also channels. The channel latest refers to the very latest releases of K8s available. | Kubernetes major versions are also channels. The channel latest refers to the very latest releases of K8s available. | ||
| + | |||
| + | ## Troubleshooting | ||
| + | |||
| + | ### Using command line tools to manually delete container images images | ||
| + | |||
| + | ```bash | ||
| + | sudo -s | ||
| + | # as root | ||
| + | export PATH=$PATH:/ | ||
| + | export CONTAINERD_ADDRESS=/ | ||
| + | ctr -n k8s.io i rm $(ctr -n k8s.io i ls -q | grep <image name to delete, regex>) | ||
| + | # or | ||
| + | export CONTAINER_RUNTIME_ENDPOINT=unix:/// | ||
| + | crictl images | ||
| + | crictl rmi <image name to delete> | ||
| + | ``` | ||
k8s/distributions/rke2.1698148046.txt.gz · Last modified: by admin