mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2025-12-13 21:34:40 +03:00
* CI: Document the 'all-in-one' layout + small refactoring (#10725) * Rename aio to all-in-one and document it ADTM. Acronyms don't tell much. * Refactor vm_count in tests provisioning * Add test case for calico using etcd datastore (#10722) * Add multinode ci layout * Add test case for calico using etcd datastore * Fix calico-node in etcd mode (#10438) * Calico : add ETCD endpoints to install-cni container * Calico : remove nodename from configmap in etcd mode --------- Co-authored-by: Olivier Levitt <olivier.levitt@gmail.com>
14 lines
216 B
YAML
14 lines
216 B
YAML
---
|
|
_vm_count_dict:
|
|
separate: 3
|
|
separate-scale: 3
|
|
ha: 3
|
|
ha-scale: 3
|
|
ha-recover: 3
|
|
ha-recover-noquorum: 3
|
|
all-in-one: 1
|
|
multinode: 3
|
|
default: 2
|
|
|
|
vm_count: "{{ _vm_count_dict[mode | d('default')] }}"
|