ansible-for-kubernetes
ansible-for-kubernetes copied to clipboard
Ansible and Kubernetes examples from Ansible for Kubernetes Book
As part of the introductory material, it would be very helpful to have an overview of how Ansible compares to Helm and Operators. I think you touch on Helm in...
In the "Verify Hello go is responding" play, I needed to add "return_content: yes" in order to get a successful run.
In the "Run the Hello Go image" play, I found I needed to add the IP address to published_ports: to get the playbook working: **127.0.0.1**:8180:8180.
Posting issues, notes & suggestions as I'm working along through the book: My system: ``` ❯ lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 20.04.2 LTS...
As I've met my 300-sponsor-goal on [GitHub Sponsors](https://github.com/sponsors/geerlingguy), I'm going to work on getting the manuscript of this book added to this repository, and _ideally_ also add some CI automation...
**Issue Description** For cluster-local-vms example running `vagrant up` command in MacOS with Oracle Virtual Box v6.1 fails with the following error ``` The IP address configured for the host-only network...
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...