forked from IBM/z_ansible_collections_samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gather-facts.yml
82 lines (73 loc) · 3.31 KB
/
gather-facts.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
###############################################################################
# © Copyright IBM Corporation 2023
###############################################################################
# This sample playbook demonstrates the zos fact gathering module included in
# the Red Hat Ansible Certified Content for IBM Z core collection.
#
# Usage:
# ansible-playbook -i <inventory> <playbook>
#
# Example:
# ansible-playbook -i inventories gather-facts.yml
# ansible-playbook -i inventories gather-facts.yml -v
#
# Requirements:
# IBM z/OS core collection 1.4.0 or later. # TODO update this version!
#
###############################################################################
- name: z/OS Gather Facts Sample Playbook
collections:
- "ibm.ibm_zos_core"
hosts: zos_host
environment: "{{ environment_vars }}"
gather_facts: false
tasks:
# ##########################################################################
# Call z/OS fact gathering with the 'ipl' subset and filter down to
# master_catalog facts.
# ##########################################################################
- name: Collect z/OS facts on master_catalog.
zos_gather_facts:
gather_subset:
- 'ipl'
filter:
- 'master*'
# ##########################################################################
# Collected facts can be accessed via the ansible_facts dict (dictionary).
# ##########################################################################
- name: Access and print info about master catalog.
ansible.builtin.debug:
msg:
- "master catalog dsn: {{ ansible_facts.master_catalog_dsn }}"
- "master catalog volser: {{ ansible_facts.master_catalog_volser }}"
# ##########################################################################
# Call z/OS fact gathering with the 'cpu' subset to collect CPC facts and
# 'iodf' subset.
# ##########################################################################
- name: Gather additional z/OS facts.
zos_gather_facts:
gather_subset:
- 'cpu'
- 'iodf'
# ##########################################################################
# Collected facts are stored in ansible_facts dict but ansible_dict does
# not need to be explicitly specified. Ansible will search for the keyword
# inside ansible_dict.
# ##########################################################################
- name: Access and print CPC and IODF info.
ansible.builtin.debug:
msg:
- "manufacturer: {{ cpc_nd_manufacturer }}"
- "model: {{ cpc_nd_model }}"
- "plant: {{ cpc_nd_plant }}"
- "iodf name: {{ iodf_name }}"
- "iodf config: {{ iodf_config }}"
# ##########################################################################
# Multiple runs of fact gathering with different subsets and filters are
# collected inside the ansible_facts variable. Enabling fact gathering
# at the top of this playbook (change the line "gather_facts: false" to
# gather_facts: true) will add many more facts to the ansible_facts dict.
# ##########################################################################
- name: Print out all collected facts.
ansible.builtin.debug:
var: ansible_facts