scottslowe-learning-tools/docker/ubuntu-swarm-mode/provision.yml
Scott Lowe d5afc5e4c4
Commit initial set of files for creating Swarm on Ubuntu with Ansible
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>
2017-04-11 10:50:15 -06:00

10 lines
155 B
YAML

---
- hosts: "all"
become: "yes"
remote_user: "vagrant"
tasks:
- name: "Install Pip"
package:
name: "python-pip"
state: "present"