forked from openstack-k8s-operators/ci-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeploy-edpm.yml
32 lines (24 loc) · 1.26 KB
/
deploy-edpm.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
31
32
---
# Entry point for the CI Framework tool.
# Running by this playbook, and providing the needed information, you will
# be able to deploy various scenarios based on EDPM.
# Note that this playbook *must* be called from within
# openstack-k8s-operators/install_yaml repository in order to leverage its
# own methods.
- name: Bootstrap step
ansible.builtin.import_playbook: ci_framework/playbooks/01-bootstrap.yml
- name: Import infra entrypoint playbook
ansible.builtin.import_playbook: ci_framework/playbooks/02-infra.yml
- name: Import package build playbook
ansible.builtin.import_playbook: ci_framework/playbooks/03-build-packages.yml
- name: Import containers build playbook
ansible.builtin.import_playbook: ci_framework/playbooks/04-build-containers.yml
- name: Import operators build playbook
ansible.builtin.import_playbook: ci_framework/playbooks/05-build-operators.yml
- name: Import deploy edpm playbook
ansible.builtin.import_playbook: ci_framework/playbooks/06-deploy-edpm.yml
- name: Import admin setup related playbook
ansible.builtin.import_playbook: ci_framework/playbooks/07-admin-setup.yml
- name: Run log related tasks
ansible.builtin.import_playbook: ci_framework/playbooks/99-logs.yml
when: not zuul_log_collection | default ('false') | bool