lab:stack_of_nucs:ansible_playbook_-_update
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
lab:stack_of_nucs:ansible_playbook_-_update [2023/05/19 02:26] – updated scripts user | lab:stack_of_nucs:ansible_playbook_-_update [2024/05/06 02:12] (current) – removed user | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Ansible Playbook - Update ====== | ||
- | In the [[discover_and_add_to_inventory|previous step]] we discovered and added the IP address of all our nodes to the file on [[NUC 2]]: ''/ | ||
- | Our first Ansible playbook will be to update Ubuntu packages on all the worker nodes. | ||
- | |||
- | Purpose: | ||
- | * Demonstrate a very useful playbook | ||
- | * Update all our nodes to the latest code | ||
- | |||
- | ====== Step 1 - Connect to the Ansible Control Node ====== | ||
- | From [[NUC 1]], log in to the Ansible control node, [[NUC 2]]. | ||
- | |||
- | ====== Step 2 - Disable DNS Stub Resolver ====== | ||
- | Even though each node receives its DNS information via DHCP, Ubuntu 22.04 will at times fail to resolve names. Rebooting solves the problem temporarily, | ||
- | |||
- | - Create file ''/ | ||
- | * <file yaml disable-dns-stub.yml> | ||
- | --- | ||
- | - name: Disable DNS stub listener | ||
- | hosts: nodes | ||
- | remote_user: | ||
- | become: true | ||
- | tasks: | ||
- | - name: Disable DNS stub listener | ||
- | ini_file: dest=/ | ||
- | tags: configuration | ||
- | - name: Restart NetworkManager | ||
- | systemd: | ||
- | name: NetworkManager | ||
- | state: restarted | ||
- | - name: Restart systemd-resolved | ||
- | systemd: | ||
- | name: systemd-resolved | ||
- | state: restarted | ||
- | - name: daemon-reload | ||
- | systemd: | ||
- | daemon_reload: | ||
- | </ | ||
- | - Run the playbook: '' | ||
- | |||
- | ====== Step 3 - Update Ubuntu on All Nodes ====== | ||
- | - 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 | ||
- | </ | ||
- | - Run the playbook: '' | ||
- | |||
- | ====== Next Step ====== | ||
- | Congratulations you just updated your nodes! Next is your second Ansible playbook - [[Ansible Playbook - CMOS]]. | ||
- | |||
- | ====== Optional ====== | ||
- | ===== Faster Bootup Times with WiFi Only ===== | ||
- | 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 | ||
- | * '' | ||
- | |||
- | ===== Check the WiFi on the NUC ===== | ||
- | Sometimes in my Lab testing I find a NUCs that seem slowing or become unresponsive. This can actually be due to a poor WiFi connection! | ||
- | |||
- | - Create the playbook check-wifi.yml | ||
- | * <file yaml check-wifi.yml> | ||
- | --- | ||
- | - name: Check wifi strength | ||
- | hosts: clients | ||
- | remote_user: | ||
- | become: true | ||
- | tasks: | ||
- | - name: Make sure wireless-tools is installed | ||
- | apt: | ||
- | name: wireless-tools | ||
- | state: present | ||
- | - name: Gather wifi strength | ||
- | shell: " | ||
- | register: wifi | ||
- | changed_when: | ||
- | - name: Display wifi strength | ||
- | debug: | ||
- | msg: "{{ item }}" | ||
- | with_items: "{{ wifi.stdout_lines }}" | ||
- | - name: Calculate wifi strength | ||
- | set_fact: | ||
- | strength: "{{ wifi.stdout | regex_search(regexp, | ||
- | vars: | ||
- | regexp: ' | ||
- | - name: Show value | ||
- | debug: | ||
- | msg: | ||
- | - "{{ strength[0] }}/70 = {{( ( (strength[0] | int) / 70) * 100 ) | int }}%" | ||
- | </ | ||
- | - Run it: '' | ||
- | - If all the NUCs are in the same place but one is much weaker than the others | ||
- | * check the antennas are connected to the Wifi card | ||
- | * does a different wifi card improve the connection? |
lab/stack_of_nucs/ansible_playbook_-_update.1684463164.txt.gz · Last modified: 2023/05/19 02:26 by user