Minikube MetalLB: Difference between revisions
Jump to navigation
Jump to search
Line 81: | Line 81: | ||
| valign="top" | | | valign="top" | | ||
* [https://github.com/metallb/metallb/releases MetalLB » GitHub » Releases] | * [https://github.com/metallb/metallb/releases MetalLB » GitHub » Releases] | ||
* [https://artifacthub.io/packages/helm/metallb/metallb MetalLB » Helm » MetalLB] | |||
* [https://artifacthub.io/packages/helm/bitnami/metallb MetalLB » Helm » Bitnami] | |||
* [https://metallb.io/configuration/ MetalLB » Configuration] | * [https://metallb.io/configuration/ MetalLB » Configuration] | ||
* [https://github.com/metallb/metallb MetalLB » GitHub] | * [https://github.com/metallb/metallb MetalLB » GitHub] |
Revision as of 22:56, 18 December 2024
Playground
docker network prune -f
docker volume prune -f
docker system prune -f
docker image ls
|
cat <<'EXE' | bash
for d in system network volume
do docker ${d} prune -f;done
EXE
|
cat <<'EXE' | ssh [email protected]
for d in system network volume
do docker ${d} prune -f;done
EXE
|
| ||
systemctl stop minikube.service
systemctl status minikube.service
systemctl restart minikube.service
|
systemctl stop minikube-tunnel.service
systemctl status minikube-tunnel.service
systemctl restart minikube-tunnel.service
|
systemctl status network-online.target
systemctl status containerd.service
systemctl status docker.service
|
| ||
minikube addons enable metallb
minikube addons list
minikube status
minikube ssh
|
||
| ||
kubectl get pods -n metallb-system -o=yaml|yq -r .items[].spec.containers[].image|awk -F @ '{printf("%s\n", $1)}'|sort -h
|
References
| ||
| ||