Clinical-Genomics / event-driven-architecture

Project tracking for event driven POC
0 stars 0 forks source link

1. [Reading] Ansible fundamentals #12

Closed seallard closed 4 weeks ago

seallard commented 1 month ago

Go through a resource below (feel free to add any good ones you find).

ChrOertlin commented 1 month ago

done

seallard commented 1 month ago

done

islean commented 1 month ago

done

diitaz93 commented 1 month ago

Done ✅ What I got from it: The playbook is a YAML file describing the state of the configuration of a server. It has several tasks, which are individual configuration changes. Each task runs a module which is a script. You can run a playbook in a "dry-run" mode. When running a playbook, it determines which parts of the server configuration differ from the playbook and runs those tasks (in the order in which they were written). This is how idempotency is achieved.