rougail-output-ansible/tests/results-doc/test_namespace/40_6leadership_follower_multi.sh

98 lines
22 KiB
Bash
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Ansible role: Rougail
▌ 🛈 Informations
▌ 
▌  basic 
Role variables
A leadership
▌ 🛈 Informations
▌ 
▌ This family contains lists of variable blocks.
▌ Path: leadership
▌  basic 
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
 Variable  ┃ Description  ┃ Default value  ┃ Type  ┃ Access control  ┃ Validator  ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
leadership.leader │ The leader. │ │  string   multiple    │  basic  │  unique  │
│ │ │ │ mandatory  │ │ │
├──────────────────────────────┼──────────────────────────────┼──────────────────────────────┼──────────────────────────────┼──────────────────────────────┼───────────────────────────────┤
leadership.follower1 │ The first follower. │ │  string   multiple    │  basic  │ │
│ │ │ │ mandatory  │ │ │
├──────────────────────────────┼──────────────────────────────┼──────────────────────────────┼──────────────────────────────┼──────────────────────────────┼───────────────────────────────┤
leadership.follower2 │ The second follower. │ • value │  string   multiple    │  standard  │ │
│ │ │ │ mandatory  │ │ │
└──────────────────────────────┴──────────────────────────────┴──────────────────────────────┴──────────────────────────────┴──────────────────────────────┴───────────────────────────────┘
Example playbook with Rougail
▌ 🛈 Informations
▌ 
▌ Do not forget to add Rougail structural file as Rougail types
Add to your structural file something like:
--- 
path: 
 to: 
 my_rougail: 
 type: rougail 
 leadership: 
 - leader: string1 # The leader 
 follower1: # The first follower 
 - string1 
 - string2 
 - string3 
 - leader: string2 # The leader 
 follower1: # The first follower 
 - string1 
 - string2 
 - string3 
 - leader: string3 # The leader 
 follower1: # The first follower 
 - string1 
 - string2 
 - string3 
Add to your playbook:
--- 
- name: Rougail 
 hosts: server 
 roles: 
 - role: <author>.rougail 
 vars: path.to.rougail 
Example playbook
--- 
- name: Rougail 
 hosts: server 
 roles: 
 - role: <author>.rougail 
 vars: 
 rougail: # Rougail 
 leadership: # A leadership 
 - leader: string1 # The leader 
 follower1: # The first follower 
 - string1 
 - string2 
 - string3 
 - leader: string2 # The leader 
 follower1: # The first follower 
 - string1 
 - string2 
 - string3 
 - leader: string3 # The leader 
 follower1: # The first follower 
 - string1 
 - string2 
 - string3