forked from IBM/z_ansible_collections_samples
-
Notifications
You must be signed in to change notification settings - Fork 1
/
query-ims.yml
35 lines (30 loc) · 844 Bytes
/
query-ims.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
33
34
35
- name: Examples of query different IMS services
hosts: zsystem
gather_facts: false
# * Include different variable files depending on environment/inventory used
vars_files:
- "{{ vars_folder_name }}/ims-dbdc.yml"
environment: '{{ system_environment }}'
tasks:
- block:
# Query CQS
# Make sure CQS is started before doing this query
- include_role:
name: ims_common_queue
vars:
cqs: query
# Query OM
- include_role:
name: ims_operations_manager
vars:
om: query
# Query SCI
- include_role:
name: ims_structured_call_interface
vars:
sci: query
# Query RM
- include_role:
name: ims_resource_manager
vars:
rm: query