mirror of
https://codeberg.org/scottslowe/learning-tools.git
synced 2026-03-11 09:04:37 +00:00
Fix incorrect placement of Ansible provisioner in Vagrantfile. Update Ansible playbook to create swarm based on learnings from Interop ITX Swarm demo. Change machines.yml to use bento/ubuntu-14.04 instead of ubuntu/trusty64. Unable to test due to slowness/connectivity issues to Ubuntu repositories. Signed-off-by: Scott Lowe <scott.lowe@scottlowe.org>
46 lines
912 B
YAML
46 lines
912 B
YAML
---
|
|
- box:
|
|
vmw: "bento/ubuntu-14.04"
|
|
vb: "bento/ubuntu-14.04"
|
|
name: "manager"
|
|
nics:
|
|
- type: "private_network"
|
|
ip_addr: "192.168.100.100"
|
|
ram: "512"
|
|
vcpu: "1"
|
|
- box:
|
|
vmw: "bento/ubuntu-14.04"
|
|
vb: "bento/ubuntu-14.04"
|
|
name: "worker-01"
|
|
nics:
|
|
- type: "private_network"
|
|
ip_addr: "192.168.100.101"
|
|
ram: "512"
|
|
vcpu: "1"
|
|
- box:
|
|
vmw: "bento/ubuntu-14.04"
|
|
vb: "bento/ubuntu-14.04"
|
|
name: "worker-02"
|
|
nics:
|
|
- type: "private_network"
|
|
ip_addr: "192.168.100.102"
|
|
ram: "512"
|
|
vcpu: "1"
|
|
- box:
|
|
vmw: "bento/ubuntu-14.04"
|
|
vb: "bento/ubuntu-14.04"
|
|
name: "worker-03"
|
|
nics:
|
|
- type: "private_network"
|
|
ip_addr: "192.168.100.103"
|
|
ram: "512"
|
|
vcpu: "1"
|
|
- box:
|
|
vmw: "bento/ubuntu-14.04"
|
|
vb: "bento/ubuntu-14.04"
|
|
name: "worker-04"
|
|
nics:
|
|
- type: "private_network"
|
|
ip_addr: "192.168.100.104"
|
|
ram: "512"
|
|
vcpu: "1"
|