- Change driver from qemu2 to docker - Remove socket_vmnet and qemu dependencies - Remove NFS mount and minikube mount LaunchAgent/LaunchDaemon - Remove old podman zot-mirror.conf - Update containerd registry mirror config for docker driver - Uses host.minikube.internal:5050 to reach zot - Configures pull-through cache for docker.io, ghcr.io, quay.io - Add dynamic tailscale serve configuration for k8s API (port is dynamic with docker driver, not fixed at 6443) - Remove svc:k8s from tailscale_serve defaults (minikube role handles it) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
18 lines
667 B
YAML
18 lines
667 B
YAML
---
|
|
# Minikube cluster configuration
|
|
# Uses docker driver - requires Docker Desktop to be installed and running
|
|
# with at least 12GB memory allocated in Docker Desktop settings
|
|
minikube_cpus: 6
|
|
minikube_memory: 11264 # Leave ~1GB headroom for Docker Desktop overhead
|
|
minikube_disk_size: "200g"
|
|
minikube_driver: docker
|
|
minikube_container_runtime: docker
|
|
|
|
# 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 to localhost)
|
|
minikube_apiserver_names:
|
|
- k8s.tail8d86e.ts.net
|
|
- indri
|
|
minikube_apiserver_port: 6443
|
|
minikube_listen_address: "0.0.0.0"
|