UncleNUC Wiki

Second chance for NUCs

User Tools

Site Tools


lab:stack_of_nucs:ansible_playbook_-_update

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
lab:stack_of_nucs:ansible_playbook_-_update [2023/05/01 19:17] – created userlab: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 [[Stack - NUC 2|NUC 2]]: ''/home/ansible/my-project/hosts'' 
  
-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 ''/home/ansible/my-project/update.yml'' 
- 
-<file yaml update.yml> 
---- 
-- hosts: nodes 
-  become: true 
-  become_user: root 
-  tasks: 
-    - name: Update apt repo and cache on all Debian/Ubuntu boxes 
-      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=/var/run/reboot-required get_md5=no 
- 
-    - name: Reboot the box if kernel updated 
-      reboot: 
-        msg: "Reboot initiated by Ansible for kernel updates" 
-        connect_timeout: 5 
-        reboot_timeout: 300 
-        pre_reboot_delay: 0 
-        post_reboot_delay: 30 
-        test_command: uptime 
-      when: reboot_required_file.stat.exists 
-</file> 
- 
-====== Step 3 - Test the Playbook ====== 
-''ansible-playbook -i hosts update.yml'' 
- 
-====== DNS Name Resolution Issues====== 
-It's not great, but some servers are inconsistent in resolving DNS names using DHCP. 
- 
-Here is a quick fix: 
-''ansible -i hosts all -a dhclient'' 
- 
-====== Next Step ====== 
-Congratulations you just updated your nodes! Next is your second Ansible playbook - [[Ansible Playbook - CMOS]]. 
- 
-====== Optional ====== 
-Set the ethernet interface to be "optional" on the nodes so they will boot faster; they normally wait for the network to come up on the wired interface. Since we are on WiFi only, the interface will never come up. 
- 
-Steps: 
-  - Create file /home/ansible/my-project/ethernetoptional.yml 
-    * <file yaml ethnetoptional.yml> 
---- 
-- hosts: nodes 
-  become: true 
-  become_user: root 
-  tasks: 
-    - name: Set ethernet interface to optional 
-      lineinfile: 
-        path: /etc/netplan/00-installer-config.yaml 
-        insertafter: "dhcp4: true" 
-        line: "      optional: true" 
-    - name: Apply netplan 
-      command: netplan apply 
-      ignore_errors: true 
-</file> 
-  - Test the playbook 
-    * ''ansible-playbook -i hosts ethernetoptional.yml'' 
lab/stack_of_nucs/ansible_playbook_-_update.1682968675.txt.gz · Last modified: 2023/05/01 19:17 by user