UncleNUC Wiki

Second chance for NUCs

User Tools

Site Tools


lab:fah_removal

This is an old revision of the document!


FAH Removal

In our previous step we set up FAH on our Stack of NUCs.

Now we are going to disable the service and uninstall it.

Purpose:

  • Demonstrate stopping and removing an installed service workload

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 the file /home/ansible/my-project/fah/removefah.yml

removefah.yml
---
- hosts: all
  become: true
  become_user: root
  tasks:
    - name: Stop and disable FAHClient.service
      ansible.builtin.service:
        name: FAHClient.service
        state: stopped
        enabled: false
    - name: Remove fahclient package
      apt:
        name: fahclient
        state: absent
        clean: true
        purge: true
  1. ansible-playbook reboot.yml (/home/ansible/my-project/fah/reboot.yml)
    • ---
      - hosts: all
        become: true
        become_user: root
        tasks:
          - name: Reboot
            reboot:

Step 3 - Test the Playbook

ansible-playbook removefah.yml (/home/ansible/my-project/fah/removefah.yml)

Now that we have removed the CPU-hungry FAH service, we go next to installing Kubernetes

lab/fah_removal.1682818965.txt.gz ยท Last modified: 2023/04/30 01:42 by user