kubernetes-clustergcekubernetesbare-metalk8s-sig-cluster-lifecycleawskubesprayhigh-availabilityansible
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
348 B
17 lines
348 B
---
|
|
|
|
- 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)
|