mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-01-29 15:24:46 -03:30
* Rename aio to all-in-one and document it ADTM. Acronyms don't tell much. * Refactor vm_count in tests provisioning
18 lines
348 B
YAML
18 lines
348 B
YAML
---
|
|
|
|
- name: "Include custom vars for ci job: {{ ci_job_name }}"
|
|
include_vars: "../files/{{ ci_job_name }}.yml"
|
|
|
|
- name: Cleamup old VMs
|
|
import_tasks: cleanup-old-vms.yml
|
|
|
|
- name: Create VMs
|
|
import_tasks: create-vms.yml
|
|
when:
|
|
- not vm_cleanup
|
|
|
|
- name: Delete VMs
|
|
import_tasks: delete-vms.yml
|
|
when:
|
|
- vm_cleanup | default(false)
|