It is not hard, it is easier if you have a convention on the playbook
names (build.yml, deploy.yml), then you just need a list of the apps
and their repo locations:

apps:
  - app1: git://internal/repo/app1.git


and a playbook that goes over this list, checks out all the apps and
then runs build.yml and deploy.yml for each.


If you don't standardize the names, add them to the vars file above:

apps:
   app1:
      src: git://internal/repo/app1.git
      build: make.yml
      deploy: push.yml

-- 
Brian Coca

-- 
You received this message because you are subscribed to the Google Groups 
"Ansible Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/CAJ5XC8mGz-oCdSR6UXbEXJSaRMEDAwRBK%3Dg0z8nHxE_8BsyQ-w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to