2017-02-17 11:54:00 +00:00
|
|
|
{% set node1 = gce.instance_data[0].name %}
|
|
|
|
{{node1}} ansible_ssh_host={{gce.instance_data[0].public_ip}}
|
2017-09-15 21:28:37 +00:00
|
|
|
{% if mode != "aio" %}
|
|
|
|
{% set node2 = gce.instance_data[1].name %}
|
2017-02-17 11:54:00 +00:00
|
|
|
{{node2}} ansible_ssh_host={{gce.instance_data[1].public_ip}}
|
2017-09-15 21:28:37 +00:00
|
|
|
{% endif %}
|
2017-02-18 10:13:30 +00:00
|
|
|
{% if mode is defined and mode in ["ha", "ha-scale", "separate", "separate-scale"] %}
|
2017-02-17 11:54:00 +00:00
|
|
|
{% set node3 = gce.instance_data[2].name %}
|
|
|
|
{{node3}} ansible_ssh_host={{gce.instance_data[2].public_ip}}
|
2016-12-14 16:00:38 +00:00
|
|
|
{% endif %}
|
2017-02-13 11:13:28 +00:00
|
|
|
{% if mode is defined and mode in ["separate", "separate-scale"] %}
|
2021-03-24 00:26:05 +00:00
|
|
|
[kube_control_plane]
|
2017-02-17 11:54:00 +00:00
|
|
|
{{node1}}
|
2016-10-28 12:56:48 +00:00
|
|
|
|
2021-04-29 12:20:50 +00:00
|
|
|
[kube_node]
|
2017-02-17 11:54:00 +00:00
|
|
|
{{node2}}
|
2016-10-28 12:56:48 +00:00
|
|
|
|
|
|
|
[etcd]
|
2017-02-17 11:54:00 +00:00
|
|
|
{{node3}}
|
2017-02-08 21:41:36 +00:00
|
|
|
|
2017-02-13 11:13:28 +00:00
|
|
|
{% elif mode is defined and mode in ["ha", "ha-scale"] %}
|
2021-03-24 00:26:05 +00:00
|
|
|
[kube_control_plane]
|
2017-02-17 11:54:00 +00:00
|
|
|
{{node1}}
|
|
|
|
{{node2}}
|
2016-02-10 10:51:39 +00:00
|
|
|
|
2021-04-29 12:20:50 +00:00
|
|
|
[kube_node]
|
2017-02-17 11:54:00 +00:00
|
|
|
{{node3}}
|
2016-02-10 10:51:39 +00:00
|
|
|
|
|
|
|
[etcd]
|
2017-03-27 11:44:21 +00:00
|
|
|
{{node1}}
|
2017-02-17 11:54:00 +00:00
|
|
|
{{node2}}
|
|
|
|
{{node3}}
|
2017-02-08 21:41:36 +00:00
|
|
|
|
2021-03-24 00:26:05 +00:00
|
|
|
[broken_kube_control_plane]
|
2020-02-11 09:38:01 +00:00
|
|
|
{{node2}}
|
|
|
|
|
|
|
|
[etcd]
|
|
|
|
{{node2}}
|
|
|
|
{{node3}}
|
2017-09-15 21:28:37 +00:00
|
|
|
{% elif mode == "default" %}
|
2021-03-24 00:26:05 +00:00
|
|
|
[kube_control_plane]
|
2017-02-17 11:54:00 +00:00
|
|
|
{{node1}}
|
2016-12-14 16:00:38 +00:00
|
|
|
|
2021-04-29 12:20:50 +00:00
|
|
|
[kube_node]
|
2017-02-17 11:54:00 +00:00
|
|
|
{{node2}}
|
2016-12-14 16:00:38 +00:00
|
|
|
|
|
|
|
[etcd]
|
2017-02-17 11:54:00 +00:00
|
|
|
{{node1}}
|
2017-09-15 21:28:37 +00:00
|
|
|
{% elif mode == "aio" %}
|
2021-03-24 00:26:05 +00:00
|
|
|
[kube_control_plane]
|
2017-09-15 21:28:37 +00:00
|
|
|
{{node1}}
|
|
|
|
|
2021-04-29 12:20:50 +00:00
|
|
|
[kube_node]
|
2017-09-15 21:28:37 +00:00
|
|
|
{{node1}}
|
|
|
|
|
|
|
|
[etcd]
|
|
|
|
{{node1}}
|
2016-10-28 12:56:48 +00:00
|
|
|
{% endif %}
|
2016-02-10 10:51:39 +00:00
|
|
|
|
2021-04-29 12:20:50 +00:00
|
|
|
[k8s_cluster:children]
|
|
|
|
kube_node
|
2021-03-24 00:26:05 +00:00
|
|
|
kube_control_plane
|
2021-04-29 12:20:50 +00:00
|
|
|
calico_rr
|
2019-08-08 14:37:22 +00:00
|
|
|
|
2021-04-29 12:20:50 +00:00
|
|
|
[calico_rr]
|
2017-02-13 11:13:28 +00:00
|
|
|
|
|
|
|
{% if mode is defined and mode in ["scale", "separate-scale", "ha-scale"] %}
|
|
|
|
[fake_hosts]
|
|
|
|
fake_scale_host[1:200]
|
|
|
|
|
2021-04-29 12:20:50 +00:00
|
|
|
[kube_node:children]
|
2017-02-13 11:13:28 +00:00
|
|
|
fake_hosts
|
|
|
|
{% endif %}
|