mirror of
https://codeberg.org/scottslowe/learning-tools.git
synced 2026-03-11 09:04:37 +00:00
Commit initial set of files to creating a Docker Swarm cluster (in Swarm mode) using Ubuntu and Ansible. Environment is currently not functional (Ansible/SSH won't correctly authenticate against the hosts). Signed-off-by: Scott Lowe <scott.lowe@scottlowe.org>
10 lines
155 B
YAML
10 lines
155 B
YAML
---
|
|
- hosts: "all"
|
|
become: "yes"
|
|
remote_user: "vagrant"
|
|
|
|
tasks:
|
|
- name: "Install Pip"
|
|
package:
|
|
name: "python-pip"
|
|
state: "present"
|