patternMinor
Tying playbooks together
Viewed 0 times
playbookstyingtogether
Problem
Say, i have written bunch of ansible roles and playbooks, configured my playbooks structure and now i'm trying to tie them to one playbook which will do its thing depending on tags or inventory file provided. Should i strive for that? Or is it better to have bunch of playbooks and call them depending on the tasks/hosts needed? What is the best way to go about this? I can't seem to find any example of tying it all together in one playbook or bunch of them which will do its thing to ones infrastructure depending on arguments provided.
Best practice in ansible docs covers organization of playbook structure but not organization of playbook use on infrastructure. Is there any examples of organizing playbooks use on infrastructure?
Best practice in ansible docs covers organization of playbook structure but not organization of playbook use on infrastructure. Is there any examples of organizing playbooks use on infrastructure?
Solution
What I have done before goes on the same direction as Zeitounator commented; you can have one or more "meta" or master playbooks that import the ones you need to run your entire automation. To add to Zaito's comment; you can use the
Say you want to execute PlatformB playbooks only for an stg or prod environment using a defined
you could change the value of
hope it helps, cheers.
when clause on import_playbook or include to control the execution of those "inner" playbooks; something like this:Say you want to execute PlatformB playbooks only for an stg or prod environment using a defined
env ansible variable:- include: platformA/do_something_on_platformA.yml
- include: platformB/do_something_on_platformB.yml
when: env == 'stg' or env == 'prod'you could change the value of
env using --extra-vars on execution time or something.hope it helps, cheers.
Code Snippets
- include: platformA/do_something_on_platformA.yml
- include: platformB/do_something_on_platformB.yml
when: env == 'stg' or env == 'prod'Context
StackExchange DevOps Q#11836, answer score: 1
Revisions (0)
No revisions yet.