- 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>
14 lines
405 B
YAML
14 lines
405 B
YAML
---
|
|
# Minikube handlers
|
|
# Note: Restarting minikube is a heavy operation and may require manual intervention
|
|
|
|
- name: Restart minikube
|
|
ansible.builtin.shell: |
|
|
minikube stop 2>/dev/null || true
|
|
minikube start
|
|
changed_when: true
|
|
|
|
- name: Restart containerd in minikube
|
|
ansible.builtin.command:
|
|
cmd: minikube ssh --native-ssh=false "sudo systemctl restart containerd"
|
|
changed_when: true
|