Matthew Hill
Matthew Hill
This is more of a note for other people in the same boat. Apparently there are issues running VirtualBox, WSL2 and Vagrant together on Windows 11. I'm getting BSOD very...
On page 100 of ## Chapter 4 - Building K8s clusters with Ansible I inserted a pre-task above the `Ensure k8s module dependencies are installed.` task ``` - name: Install...
On page 74 in ### Chapter 3 - Ansible manages containers When running command: ``` $ ansible-galaxy install -r requirements.yml ``` It runs with a warning: ``` [WARNING]: Ansible is...
Page 53 in ### Chapter 2 - Automation brings DevOps bliss Running the playbook ``` $ ansible-playbook -i inventory main.yml ``` locks up at this step: ``` TASK [Expose Hello...
Under ### Installing Ansible inside Bash on Ubuntu When running: ``` $ sudo apt-get install -y python-pip python-dev ``` Returns: ``` Reading package lists... Done Building dependency tree Reading state...
### Chapter 1 Under **Building Hello Go** on page 23 The second curl example is incorrect ``` curl localhost:8180 Hello, you requested: /test ``` should be ``` curl localhost:8180/test Hello,...