k8s/roles/gpu_model_storage/tasks/main.yml
2026-07-15 11:14:21 +03:00

17 lines
439 B
YAML

---
- name: Partition
ansible.builtin.include_tasks: partition.yml
when: gpu_model_storage_devices | length > 0
- name: RAID
ansible.builtin.include_tasks: raid.yml
when: gpu_model_storage_devices | length > 0
- name: Filesystem
ansible.builtin.include_tasks: filesystem.yml
when: gpu_model_storage_devices | length > 0
- name: Mount
ansible.builtin.include_tasks: mount.yml
when: gpu_model_storage_devices | length > 0