lab:first_ansible_job_-_update
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
lab:first_ansible_job_-_update [2023/04/16 21:54] – updated user | lab:first_ansible_job_-_update [2023/04/28 21:39] (current) – replaced user | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== First Ansible Job - Update ====== | ||
- | From NUC 1, log in to the Ansible control node, NUC 2. | ||
- | We are going to create and run an Ansible playbook to update the OS on the nodes. | ||
- | |||
- | In the [[discover_nucs_and_add_to_inventory|previous step]] we discovered and added the IP address of all our nodes to the file on [[NUC 2]]: ''/ | ||
- | |||
- | |||
- | Steps: | ||
- | - Create file / | ||
- | * <code yaml> | ||
- | - hosts: nodes | ||
- | become: true | ||
- | become_user: | ||
- | tasks: | ||
- | - name: Update apt repo and cache on all Debian/ | ||
- | apt: update_cache=yes force_apt_get=yes cache_valid_time=3600 | ||
- | |||
- | - name: Upgrade all packages on servers | ||
- | apt: upgrade=dist force_apt_get=yes | ||
- | |||
- | - name: Check if a reboot is needed on all servers | ||
- | register: reboot_required_file | ||
- | stat: path=/ | ||
- | |||
- | - name: Reboot the box if kernel updated | ||
- | reboot: | ||
- | msg: " | ||
- | connect_timeout: | ||
- | reboot_timeout: | ||
- | pre_reboot_delay: | ||
- | post_reboot_delay: | ||
- | test_command: | ||
- | when: reboot_required_file.stat.exists | ||
- | </ | ||
- | - Test the playbook | ||
- | * '' |
lab/first_ansible_job_-_update.1681682064.txt.gz · Last modified: 2023/04/16 21:54 by user