diff --git a/Scripts/Ansible/Playbooks/Linux/Kubernetes/Deploy RKE2 Cluster/1-provision-device.yml b/Scripts/Ansible/Playbooks/Linux/Kubernetes/Deploy RKE2 Cluster/1-provision-device.yml index 46d57e4..3857fc8 100644 --- a/Scripts/Ansible/Playbooks/Linux/Kubernetes/Deploy RKE2 Cluster/1-provision-device.yml +++ b/Scripts/Ansible/Playbooks/Linux/Kubernetes/Deploy RKE2 Cluster/1-provision-device.yml @@ -1,13 +1,14 @@ +```jsx title="1-provision-vm.yml" --- -- name: Ubuntu Server-Based Cluster Deployment #This is specific to my homelab +- name: Ubuntu Server-Based Cluster Deployment hosts: all become: yes tasks: - - name: Fetch Updates Prior to Software Installation + - name: Fetch updates apt: update_cache: yes - - name: Install nfs-common, iptables, nano, and htop + - name: Install packages apt: name: - nfs-common @@ -17,13 +18,14 @@ state: present update_cache: yes - - name: Perform APT Dist Upgrade + - name: Upgrade all packages apt: upgrade: dist - - name: Autoremove APT Packages + - name: Autoremove unused packages apt: autoremove: yes - - name: Reboot the Device - reboot: \ No newline at end of file + - name: Reboot the VM + reboot: +``` \ No newline at end of file