↧
Answer by schmichri for Three solutions to structure a deployment with Ansible?
Short Answer: You do programming here. Consider Programming Standards (cleancode) like "package by feature" and build role which are reusable and express the reason of the role.e.g. roles: - role: jdk...
View ArticleAnswer by 030 for Three solutions to structure a deployment with Ansible?
I would recommend to structure the code as defined in the Ansible Best Practices document:and to follow the structure that major contributors to the ansible galaxy platform use, like geerlingguy.If one...
View ArticleThree solutions to structure a deployment with Ansible?
I am currently deploying a new product and came across some problems to structure my Playbook and Roles. I have three different solutions and hope to get some input which path might be the best.The...
View Article