20 lines
436 B
YAML
20 lines
436 B
YAML
---
|
|
- hosts: localhost
|
|
gather_facts: no
|
|
tasks:
|
|
- debug: msg="Running Zuul Operator Playbook"
|
|
- name: Show the env
|
|
command: env
|
|
- import_role:
|
|
name: get_status
|
|
- import_role:
|
|
name: create_config
|
|
- import_role:
|
|
name: deploy_pg
|
|
when: (pg_cr_lookup|length==0)
|
|
- import_role:
|
|
name: deploy_zk
|
|
when: (zk_cr_lookup|length==0)
|
|
- import_role:
|
|
name: deploy
|