UncleNUC Wiki

Second chance for NUCs

User Tools

Site Tools


lab:fah_removal

This is an old revision of the document!


FAH Removal

From NUC 1, log in to the Ansible control node, NUC 2.

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

Now we are going to disable the service.

Purpose:

  • Demonstrate stopping an installed service workload

Example of the file we are writing

example.yml
- hosts: localhost
  gather_facts: false
  vars:
    stop_services:
      - fah.service
  tasks:
    - service_facts:

    - name: stop and disable a service
      service:
        name: "{{ item }}"
        state: stopped
        enabled: false
      when: "item in service_names"
      loop: "{{ stop_services }}"
      vars:
        service_names: "{{ services|dict2items|map(attribute='value.name')|list }}"
    - name: remove apt package
      apt:
        pkg: fah
        state: absent

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

lab/fah_removal.1681745988.txt.gz ยท Last modified: 2023/04/17 15:39 by user