c12s-kubespray/tests/cloud_playbooks/roles/packet-ci/templates/inventory.j2
Matthew Mosesohn 023108a733 Refactor calico route reflector to run in k8s cluster (#4975)
* Refactor calico-rr to run in k8s cluster with taint

Change-Id: I75a3169ff5b36ce8302fc7ef1c32d3eb697b5afa

* add preinstall checks

* rework calico/rr role

Change-Id: I2f0a7e6cb77cf91ad4a615923680760d2e5d9ca8

* add empty calico-rr group

Change-Id: I006c0a60db9b72d02245bf8fdfabcf982144a5ad
2019-08-08 07:37:22 -07:00

58 lines
717 B
Django/Jinja

[all]
{% for instance in vms.results %}
instance-{{ loop.index }} ansible_ssh_host={{instance.stdout}}
{% endfor %}
{% if mode is defined and mode in ["separate", "separate-scale"] %}
[kube-master]
instance-1
[kube-node]
instance-2
[etcd]
instance-3
{% elif mode is defined and mode in ["ha", "ha-scale"] %}
[kube-master]
instance-1
instance-2
[kube-node]
instance-3
[etcd]
instance-1
instance-2
instance-3
{% elif mode == "default" %}
[kube-master]
instance-1
[kube-node]
instance-2
[etcd]
instance-1
{% elif mode == "aio" %}
[kube-master]
instance-1
[kube-node]
instance-1
[etcd]
instance-1
[vault]
instance-1
{% endif %}
[k8s-cluster:children]
kube-node
kube-master
calico-rr
[calico-rr]
[fake_hosts]