-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.yml
30 lines (26 loc) · 874 Bytes
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
---
- name: Verify overcloud deployment for autoscaling
import_playbook:
"{{ verify_autoscaling | default('playbooks/verify_autoscaling.yaml') }}"
when:
- test.ospversion is defined
- test.ospversion >= "17.1"
- name: Configure the heat service for autoscaling
import_playbook:
"{{ configure_heat | default('playbooks/configure_heat.yaml') }}"
when:
- test.ospversion is defined
- test.ospversion >= "17.1"
- name: Creating the stack deployment for autoscaling
import_playbook:
"{{ create_stack | default('playbooks/creating_stack.yaml') }}"
when:
- test.ospversion is defined
- test.ospversion >= "17.1"
- name: Testing automatic scaling of instances
import_playbook:
"{{ test_autoscaling | default('playbooks/test_autoscaling.yaml') }}"
when:
- test.ospversion is defined
- test.ospversion >= "17.1"
...