User Tools

Site Tools


k8s:distributions:rke2

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
k8s:distributions:rke2 [2023/11/11 17:22] admink8s:distributions:rke2 [2023/11/11 18:21] (current) admin
Line 135: Line 135:
 [Here](https://update.rke2.io/v1-release/channels) you can see what version corresponds to stable at the moment. [Here](https://update.rke2.io/v1-release/channels) you can see what version corresponds to stable at the moment.
 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:/var/lib/rancher/rke2/bin
 +export CONTAINERD_ADDRESS=/run/k3s/containerd/containerd.sock
 +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:///run/k3s/containerd/containerd.sock
 +crictl images
 +crictl rmi <image name to delete>
 +```
k8s/distributions/rke2.1699719760.txt.gz · Last modified: by admin