lab:stack_of_nucs:ansible_playbook_-_update
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
lab:stack_of_nucs:ansible_playbook_-_update [2023/05/13 19:27] – [DNS Name Resolution Issues] 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 - Create the Playbook ====== | ||
- | 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 | ||
- | </ | ||
- | |||
- | ====== Step 3 - Test the Playbook ====== | ||
- | '' | ||
- | |||
- | ====== DNS Name Resolution Issues====== | ||
- | It's not great, but some servers are inconsistent in resolving DNS names using DHCP. | ||
- | |||
- | Here is a quick fix I have used in the past: | ||
- | '' | ||
- | |||
- | This can get you name resolution, but you many have two IP addresses! | ||
- | |||
- | Current things to test better solutions: | ||
- | * '' | ||
- | * '' | ||
- | ====== Next Step ====== | ||
- | Congratulations you just updated your nodes! Next is your second Ansible playbook - [[Ansible Playbook - CMOS]]. | ||
- | |||
- | ====== 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/stack_of_nucs/ansible_playbook_-_update.1684006058.txt.gz · Last modified: 2023/05/13 19:27 by user