| 12345678910111213141516171819202122232425262728293031323334353637 |
- - name: Gather OS specific variables
- include_vars: "{{ ansible_os_family }}.yml"
- - name: Check NVIDIA GPU and driver/CUDA status on target host
- include_tasks: check-gpu-and-driver.yml
- when: nvidia_driver_installer_path is defined and cuda_installer_path is defined
- - name: Check local installation files
- include_tasks: check-local-files.yml
- when: nvidia_driver_installer_path is defined and cuda_installer_path is defined
- - name: Install NVIDIA driver (if installer path provided)
- include_tasks: install-nvidia-driver.yml
- when: nvidia_driver_installer_path is defined
- - name: Install CUDA (if installer path provided)
- include_tasks: install-cuda.yml
- when: nvidia_driver_installer_path is defined and cuda_installer_path is defined
- - name: Configure GRUB
- include_tasks: configure-grub.yml
- when: nvidia_driver_installer_path is defined and cuda_installer_path is defined
- - name: Install Container Toolkit
- include_tasks: install-container-toolkit.yml
- when: nvidia_driver_installer_path is defined and cuda_installer_path is defined
- - name: Configure containerd
- include_tasks: configure-containerd.yml
- when: nvidia_driver_installer_path is defined and cuda_installer_path is defined
- - name: Configure host
- include_tasks: configure-host.yml
- - name: Run post-tasks
- include_tasks: post-tasks.yml
- when: nvidia_driver_installer_path is defined and cuda_installer_path is defined
|