lab:fah_removal
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
lab:fah_removal [2023/04/20 21:44] – updated user | lab:fah_removal [2023/05/06 23:02] (current) – replaced user | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== FAH Removal ====== | ||
- | From NUC 1, log in to the Ansible control node, NUC 2. | ||
- | In our previous step we [[fah_installation|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 | ||
- | |||
- | Example of the file we are writing | ||
- | |||
- | <file yaml removefah.yml> | ||
- | - hosts: all | ||
- | become: true | ||
- | become_user: | ||
- | 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 | ||
- | </ | ||
- | |||
- | Now that we have removed the CPU-hungry FAH service, we go next to [[Install Kubernetes|installing Kubernetes]] |
lab/fah_removal.1682027063.txt.gz · Last modified: 2023/04/20 21:44 by user