16 lines
423 B
YAML
Executable file
16 lines
423 B
YAML
Executable file
- name: Install cuda on all servers
|
|
hosts: new
|
|
gather_facts: true
|
|
become: true
|
|
tags: all
|
|
roles:
|
|
- { role: cuda, tags: [cuda]}
|
|
- { role: docker_ce_install, tags: [docker]}
|
|
- { role: mount_object_storage, tags: [s3]}
|
|
- { role: install_blurit, tags: [blurit]}
|
|
post_tasks:
|
|
- name: Restart all docker services
|
|
ansible.builtin.systemd_service:
|
|
name: docker
|
|
state: restarted
|
|
|