-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update role API for assemble_template (#183)
Signed-off-by: Webster Mudge <[email protected]>
- Loading branch information
Showing
1 changed file
with
6 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,13 +17,12 @@ | |
argument_specs: | ||
main: | ||
short_description: "Discover and render files into a cluster template" | ||
description: | | ||
Discovers fragment files in a specified directory, loops through fragment files | ||
rendering them through M(ansible.builtin.template), places them in a temporary directory, | ||
and then assembles a single, final cluster template. | ||
Fragment files must be located on the Ansible controller since M(ansible.builtin.template) only executes on the controller. | ||
This ensures that the template processing occurs on the Ansible controller machine. | ||
author: "Ronald Suplina <[email protected]>" | ||
description: | ||
- Discovers fragment files in a specified directory, loops through fragment files rendering them through M(ansible.builtin.template), places them in a temporary directory, and then assembles a single, final cluster template. | ||
- Fragment files must be located on the Ansible controller since M(ansible.builtin.template) only executes on the controller. | ||
- This ensures that the template processing occurs on the Ansible controller machine. | ||
author: | ||
- "Ronald Suplina <[email protected]>" | ||
options: | ||
cluster_template_fragments_directory: | ||
description: "Path to the directory containing fragment files for the cluster template" | ||
|