PHASE 1 - Add Packet-CI playbook and configuration (#4537)

This commit is contained in:
Andreas Krüger
2019-04-16 23:49:07 +02:00
committed by Kubernetes Prow Robot
parent 78f6f6b889
commit b834a28891
10 changed files with 268 additions and 1 deletions

View 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]