Skip to content

Commit

Permalink
Update Ansible resources
Browse files Browse the repository at this point in the history
  • Loading branch information
abregman committed Aug 1, 2021
1 parent 24df39f commit 8d92c04
Showing 1 changed file with 27 additions and 1 deletion.
28 changes: 27 additions & 1 deletion resources/ansible.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
## Ansible

### Videos

Name | Comments
:------ |:--------:
[Ansible 101 - Jeff Geerling](https://www.youtube.com/watch?v=goclfp6a2IQ&list=RDCMUCR-DXc1voovS8nhAvccRZhg&index=1) | Comprehensive practical way to learn Ansible
[What is Ansible? - TechWorld with Nana](https://www.youtube.com/watch?v=1id6ERvfozo) | High-level short overview of Ansible
[How to write your first Ansible playbook](https://www.youtube.com/watch?v=BeYUQaFS-vg) | Practical video on how to write a playbook in Ansible

### Articles

Name | Comments
:------ |:--------:
[Learning Ansible basics - Red Hat](https://www.redhat.com/en/topics/automation/learning-ansible-tutorial) | Red Hat's guide on how to learn Ansible basics + links to the content itself
[Writing reliable Ansible Playbooks - 2021](https://dev.to/xlab_si/writing-reliable-ansible-playbooks-295i) |
[Introduction to Ansible - 2021](https://medium.com/@bagusays/introduction-to-ansible-82f2bc12cd87) |
[A CI/CD Pipeline Project for a Trunk-Based Development Strategy in a Kubernetes Environment](https://medium.com/swlh/a-ci-cd-pipeline-project-for-a-trunk-based-development-strategy-in-a-kubernetes-environment-c4ffea9700fe) |

### Books

Name | Comments
:------ |:--------:
[Ansible for DevOps](https://www.amazon.com/Ansible-DevOps-Server-configuration-management/dp/098639341X) |
[Ansible: From Beginner to Pro](https://www.amazon.com/Ansible-Beginner-Pro-Michael-Heap/dp/1484216601) |
[Ansible: Up and Running](https://www.amazon.com/Ansible-Automating-Configuration-Management-Deployment/dp/1491979801) |


### Cheat Sheet

* Check if list has elements
Expand Down Expand Up @@ -32,4 +58,4 @@ when: my_list | length > 0
debug:
msg: "{{ ansible_facts.packages['chromium'] }}"
when: "'chromium' in ansible_facts.packages"
```
```

0 comments on commit 8d92c04

Please sign in to comment.