diff --git a/inventory.yml b/inventory.yml index 4b09253..f1ca978 100644 --- a/inventory.yml +++ b/inventory.yml @@ -32,11 +32,6 @@ all: ansible_host: oracle.madereddy.com ansible_user: ubuntu ansible_ssh_private_key_file: ~/.ssh/id_ed25519 - Gaming: - ansible_host: 192.168.1.13 - ansible_connection: ssh - ansible_user: jeet - ansible_shell_type: cmd # host2: # ansible_host: # ansible_user: @@ -44,4 +39,11 @@ all: # compose_file_paths: # - /path/to/docker-compose.yml # - /path/to/docker-compose.yml -# - /path/to/docker-compose.yml \ No newline at end of file +# - /path/to/docker-compose.yml + VirtualBox: + hosts: + Gaming: + ansible_host: 192.168.1.13 + ansible_connection: ssh + ansible_user: jeet + ansible_shell_type: cmd \ No newline at end of file diff --git a/playbooks/virtualbox_build.yml b/playbooks/virtualbox_build.yml new file mode 100644 index 0000000..fa31bc7 --- /dev/null +++ b/playbooks/virtualbox_build.yml @@ -0,0 +1,7 @@ +- name: Build OCI Stack + hosts: VirtualBox + tasks: + - name: Start Virtual Box Deployment + ansible.builtin.command: + cmd: multipass launch 23.04 --bridged -n Test + ignore_errors: yes \ No newline at end of file