mirror of
https://codeberg.org/scottslowe/learning-tools.git
synced 2026-03-11 09:04:37 +00:00
Edit machines.yml to use nested YAML data structures for box names. Edit Vagrantfile to reference updated YAML data appropriately. Signed-off-by: Scott S. Lowe <scott.lowe@scottlowe.org>
49 lines
910 B
YAML
49 lines
910 B
YAML
---
|
|
- name: "consul-01"
|
|
box:
|
|
vmw: "slowe/ubuntu-trusty-x64"
|
|
vb: "ubuntu/trusty64"
|
|
ram: "512"
|
|
vcpu: "1"
|
|
ip_addr: "192.168.1.101"
|
|
role: "consul"
|
|
- name: "consul-02"
|
|
box:
|
|
vmw: "slowe/ubuntu-trusty-x64"
|
|
vb: "ubuntu/trusty64"
|
|
ram: "512"
|
|
vcpu: "1"
|
|
ip_addr: "192.168.1.102"
|
|
role: "consul"
|
|
- name: "consul-03"
|
|
box:
|
|
vmw: "slowe/ubuntu-trusty-x64"
|
|
vb: "ubuntu/trusty64"
|
|
ram: "512"
|
|
vcpu: "1"
|
|
ip_addr: "192.168.1.103"
|
|
role: "consul"
|
|
- name: "coreos-01"
|
|
box:
|
|
vmw: "coreos-stable"
|
|
vb: "coreos-stable"
|
|
ram: "512"
|
|
vcpu: "1"
|
|
ip_addr: "192.168.1.104"
|
|
role: "docker"
|
|
- name: "coreos-02"
|
|
box:
|
|
vmw: "coreos-stable"
|
|
vb: "coreos-stable"
|
|
ram: "512"
|
|
vcpu: "1"
|
|
ip_addr: "192.168.1.105"
|
|
role: "docker"
|
|
- name: "coreos-03"
|
|
box:
|
|
vmw: "coreos-stable"
|
|
vb: "coreos-stable"
|
|
ram: "512"
|
|
vcpu: "1"
|
|
ip_addr: "192.168.1.106"
|
|
role: "docker"
|