blumeops/ansible/roles/minikube/defaults/main.yml
Erich Blume 919f926241 P5.1: Update minikube role for QEMU2 driver
- Change minikube driver from podman to qemu2
- Change container runtime from cri-o to containerd
- Add qemu installation to minikube role
- Remove podman role from indri.yml playbook
- Update handlers for containerd instead of cri-o
- Temporarily disable registry mirror config (needs containerd format)
- Add k8s-storage synology user creation steps to P5.1 doc
- Add post-migration tasks for zot registry mirror reconfiguration

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-20 21:06:53 -08:00

16 lines
465 B
YAML

---
# Minikube cluster configuration
minikube_cpus: 4
minikube_memory: 8192
minikube_disk_size: "200g"
minikube_driver: qemu2
minikube_container_runtime: containerd
# Remote access configuration
# These allow kubectl from other machines (e.g., gilbert) to connect
# k8s.tail8d86e.ts.net is exposed via Tailscale service (TCP passthrough)
minikube_apiserver_names:
- k8s.tail8d86e.ts.net
- indri
minikube_apiserver_port: 6443
minikube_listen_address: "0.0.0.0"