lab:first_ansible_job_-_update
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
lab:first_ansible_job_-_update [2023/04/20 21:56] – added dashes 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]]: ''/ | ||
- | |||
- | Purpose: | ||
- | * Demonstrate a very useful playbook | ||
- | * Update all our nodes to the latest code | ||
- | |||
- | Steps: | ||
- | - Create file / | ||
- | * <file yaml update.yml> | ||
- | --- | ||
- | - 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 | ||
- | * '' | ||
- | |||
- | | ||
- | |||
- | ====== Optional ====== | ||
- | Set the ethernet interface to be " | ||
- | |||
- | Steps: | ||
- | - Create file / | ||
- | * <file yaml ethnetoptional.yml> | ||
- | --- | ||
- | - hosts: nodes | ||
- | become: true | ||
- | become_user: | ||
- | tasks: | ||
- | - name: Set ethernet interface to optional | ||
- | lineinfile: | ||
- | path: / | ||
- | insertafter: | ||
- | line: " | ||
- | - name: Apply netplan | ||
- | command: netplan apply | ||
- | ignore_errors: | ||
- | </ | ||
- | - Test the playbook | ||
- | * '' |
lab/first_ansible_job_-_update.1682027807.txt.gz · Last modified: 2023/04/20 21:56 by user