mirror of
https://codeberg.org/scottslowe/learning-tools.git
synced 2026-03-11 09:04:37 +00:00
Modify Vagrantfile and servers.yml to create mechanism for properly limiting results placed into the override files generated from the ERB template. This prevents non-etcd systems from being listed as part of the etcd cluster, which would otherwise cause etcd to fail.
37 lines
646 B
YAML
37 lines
646 B
YAML
---
|
|
- name: etcd-01
|
|
box: slowe/ubuntu-trusty-x64
|
|
ram: 512
|
|
vcpu: 1
|
|
priv_ip: 192.168.101.101
|
|
etcd: active
|
|
- name: etcd-02
|
|
box: slowe/ubuntu-trusty-x64
|
|
ram: 512
|
|
vcpu: 1
|
|
priv_ip: 192.168.101.102
|
|
etcd: active
|
|
- name: etcd-03
|
|
box: slowe/ubuntu-trusty-x64
|
|
ram: 512
|
|
vcpu: 1
|
|
priv_ip: 192.168.101.103
|
|
etcd: active
|
|
- name: coreos-01
|
|
box: coreos-stable
|
|
ram: 512
|
|
vcpu: 1
|
|
priv_ip: 192.168.101.111
|
|
etcd: inactive
|
|
- name: coreos-02
|
|
box: coreos-stable
|
|
ram: 512
|
|
vcpu: 1
|
|
priv_ip: 192.168.101.112
|
|
etcd: inactive
|
|
- name: coreos-03
|
|
box: coreos-stable
|
|
ram: 512
|
|
vcpu: 1
|
|
priv_ip: 192.168.101.113
|
|
etcd: inactive
|