lab:ansible_virtualbox_autoboot_linux:delete_the_first_ubuntu_vm_using_ansible
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
lab:ansible_virtualbox_autoboot_linux:delete_the_first_ubuntu_vm_using_ansible [2024/01/20 17:43] – updated user | lab:ansible_virtualbox_autoboot_linux:delete_the_first_ubuntu_vm_using_ansible [2024/05/10 05:15] (current) – removed user | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Delete the first Ubuntu VM using Ansible ====== | ||
- | Let's look at using Ansible to remove this first VM. Exit out of the user '' | ||
- | ===== Simple Playbook ===== | ||
- | <file yaml destroy_vm.yml> | ||
- | --- | ||
- | - hosts: localhost | ||
- | connection: local | ||
- | gather_facts: | ||
- | vars_files: | ||
- | - variables.yml | ||
- | vars: | ||
- | vm_name: my_vm | ||
- | |||
- | tasks: | ||
- | - name: Remove any old VM with this name | ||
- | command: "{{ Global.vboxmanage_path }} unregistervm --delete {{ vm_name }}" | ||
- | </ | ||
- | |||
- | Try this with the VM running. Note how it fails. | ||
- | |||
- | '' | ||
- | |||
- | ===== Attempt 2 Playbook ===== | ||
- | <file yaml destroy_vm.yml> | ||
- | --- | ||
- | - hosts: localhost | ||
- | connection: local | ||
- | gather_facts: | ||
- | vars_files: | ||
- | - variables.yml | ||
- | vars: | ||
- | vm_name: my_vm | ||
- | |||
- | tasks: | ||
- | - name: Shut down VM with this name | ||
- | command: "{{ Global.vboxmanage_path }} controlvm {{ vm_name }} acpipowerbutton" | ||
- | - name: Remove any old VM with this name | ||
- | command: "{{ Global.vboxmanage_path }} unregistervm --delete {{ vm_name }}" | ||
- | </ | ||
- | |||
- | Try this version with the VM running. Note how it fails to work as expected. The VM stops, but is not removed. If you run it a second time, it fails on the power off command. | ||
- | |||
- | What ideas do you have to make the script work, shutting down the VM if necessary before removing it? There are many ways. | ||
- | |||
- | Bring the VM back up using '' | ||
- | |||
- | : | ||
- | |||
- | |||
- | Instead of the graceful poweroff method above, you can also experiment with '' | ||
- | |||
- | ===== Better Playbook ===== | ||
- | This is a quick and dirty solution, no better than running the commands manually. | ||
- | |||
- | To run the playbook below: '' | ||
- | |||
- | <file yaml destroy_vm.yml> | ||
- | --- | ||
- | - hosts: localhost | ||
- | connection: local | ||
- | gather_facts: | ||
- | vars_files: | ||
- | - variables.yml | ||
- | vars: | ||
- | vm_name: my_vm | ||
- | |||
- | tasks: | ||
- | - name: Shut down VM with this name | ||
- | command: "{{ Global.vboxmanage_path }} controlvm {{ vm_name }} acpipowerbutton" | ||
- | - name: Pause 1 minute | ||
- | pause: | ||
- | minutes: 1 | ||
- | - name: Remove any old VM with this name | ||
- | command: "{{ Global.vboxmanage_path }} unregistervm --delete {{ vm_name }}" | ||
- | </ | ||
- | |||
- | ===== Why So Complicated? | ||
- | Oracle Virtualbox doesn' | ||
- | |||
- | Ansible can do the logic we want, but it's not straightforward: | ||
- | - Is the VM powered on? How can we check that with Ansible? | ||
- | * If yes, power it off | ||
- | - Is the VM now off? | ||
- | - Delete the VM | ||
- | - And yes, error handling | ||
- | |||
- | '' | ||
- | |||
- | ====== Next Step ====== | ||
- | OK, we did the easy bit first. When you are ready for a challenge, continue to [[Deploy a Fleet of VMs]]. | ||
- | |||
- | Or back to [[Test the First Ubuntu VM on Ansible]] |
lab/ansible_virtualbox_autoboot_linux/delete_the_first_ubuntu_vm_using_ansible.1705772604.txt.gz · Last modified: 2024/01/20 17:43 by user