mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-03-10 04:08:02 +03:00
PHASE 1 - Add Packet-CI playbook and configuration (#4537)
This commit is contained in:
committed by
Kubernetes Prow Robot
parent
78f6f6b889
commit
b834a28891
54
tests/cloud_playbooks/roles/packet-ci/templates/inventory.j2
Normal file
54
tests/cloud_playbooks/roles/packet-ci/templates/inventory.j2
Normal file
@@ -0,0 +1,54 @@
|
||||
[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
|
||||
|
||||
[fake_hosts]
|
||||
Reference in New Issue
Block a user