├── .github └── ISSUE_TEMPLATE │ └── submit-a-talk.md ├── .gitignore ├── README.rst └── presentations ├── 2017-08-15 └── README.rst ├── 2017-10-12 ├── 02-Ansible-Role-Development.pptx └── README.rst ├── 2017-11-07 ├── 02-Development-of-Ansible-Modules.pptx └── README.rst ├── 2018-02-21 ├── 01-Ansible-Roles-F5.pptx ├── 03-Templating-in-Ansible.pptx ├── 04-Ansible-vault.pptx └── README.rst ├── 2018-10-15 ├── 01-Magic-Happens.pdf ├── 03-Integration-tests-in-Ansible-with-Molecule.pdf └── README.rst ├── 2018-12-12 ├── 01-Writing-your-first-Ansible-module.pdf ├── README.rst ├── Upgrading the backend database of a £3 billion business website on a Friday afternoon with Ansible - James Freeman.pdf └── community-update-Dec-2018.pdf ├── 2019-01-31 ├── Ansible-Future-Directions.pdf ├── Introducing Ansible to matrix-final.pdf ├── README.rst └── automate-k8s-workloads-ansible.pdf ├── 2019-03-19 ├── 01 - Ansible at G-Research.pdf ├── 04 - How I Provision My MacBook with Ansible.pdf └── README.rst ├── 2019-06-13 ├── README.rst └── keptn - ansible meetup london june 2019.pdf ├── 2019-08-29 ├── DevOps-Pipelines.to.bridge.the.Gap-BartVanBos.pdf ├── James Freeman - Positive Psychology with Ansible.pdf └── README.rst ├── 2019-11-25 ├── Managing VMware VMs with Ansible.pdf ├── README.rst └── The_power_of_local_facts.pdf ├── 2020-01-29 ├── Ansible Callback Plugins.pdf ├── G-Research_Better_Playbooks.pptx └── README.rst ├── 2020-06-03 ├── README.rst └── The Evolution of Ansible Tower at Gamesys.pdf ├── 2020-09-10 ├── Ansible Inventory Plugins.pdf ├── README.md ├── Vault workflows with Ansible.pdf └── ansible-goss-testing.pdf ├── 2021-05-25 ├── Deploying-PHP-Ansistrano.pdf └── README.md ├── 2022-04-19 ├── Deploying an OpenStack infrastructure on a single server with Ansible.pdf ├── README.md └── puppet_2_ansible.pdf ├── 2024-09-23 ├── 2024-09-ansible-community-team.pdf ├── 2024-09-ansible-devtools.pdf ├── 2024-09-ansible-pilot-from-zero-to-hero.pdf └── README.md ├── 2024-11-21 ├── Compliance.pdf ├── Infrastructure as Code - VPS provisioning and configuration on Hetzner Cloud.pdf └── README.md ├── 2025-02-27 ├── README.md ├── The Tao of Ansible.pdf └── panel.pdf └── 2025-06-05 ├── Ansible 101 - Getting Started on your Ansible Journey.pdf ├── README.md └── Tame the Chain- Smart VM Dependency Management with Ansible.pdf /.github/ISSUE_TEMPLATE/submit-a-talk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/.github/ISSUE_TEMPLATE/submit-a-talk.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.sw? 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/README.rst -------------------------------------------------------------------------------- /presentations/2017-08-15/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2017-08-15/README.rst -------------------------------------------------------------------------------- /presentations/2017-10-12/02-Ansible-Role-Development.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2017-10-12/02-Ansible-Role-Development.pptx -------------------------------------------------------------------------------- /presentations/2017-10-12/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2017-10-12/README.rst -------------------------------------------------------------------------------- /presentations/2017-11-07/02-Development-of-Ansible-Modules.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2017-11-07/02-Development-of-Ansible-Modules.pptx -------------------------------------------------------------------------------- /presentations/2017-11-07/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2017-11-07/README.rst -------------------------------------------------------------------------------- /presentations/2018-02-21/01-Ansible-Roles-F5.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2018-02-21/01-Ansible-Roles-F5.pptx -------------------------------------------------------------------------------- /presentations/2018-02-21/03-Templating-in-Ansible.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2018-02-21/03-Templating-in-Ansible.pptx -------------------------------------------------------------------------------- /presentations/2018-02-21/04-Ansible-vault.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2018-02-21/04-Ansible-vault.pptx -------------------------------------------------------------------------------- /presentations/2018-02-21/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2018-02-21/README.rst -------------------------------------------------------------------------------- /presentations/2018-10-15/01-Magic-Happens.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2018-10-15/01-Magic-Happens.pdf -------------------------------------------------------------------------------- /presentations/2018-10-15/03-Integration-tests-in-Ansible-with-Molecule.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2018-10-15/03-Integration-tests-in-Ansible-with-Molecule.pdf -------------------------------------------------------------------------------- /presentations/2018-10-15/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2018-10-15/README.rst -------------------------------------------------------------------------------- /presentations/2018-12-12/01-Writing-your-first-Ansible-module.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2018-12-12/01-Writing-your-first-Ansible-module.pdf -------------------------------------------------------------------------------- /presentations/2018-12-12/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2018-12-12/README.rst -------------------------------------------------------------------------------- /presentations/2018-12-12/Upgrading the backend database of a £3 billion business website on a Friday afternoon with Ansible - James Freeman.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2018-12-12/Upgrading the backend database of a £3 billion business website on a Friday afternoon with Ansible - James Freeman.pdf -------------------------------------------------------------------------------- /presentations/2018-12-12/community-update-Dec-2018.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2018-12-12/community-update-Dec-2018.pdf -------------------------------------------------------------------------------- /presentations/2019-01-31/Ansible-Future-Directions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2019-01-31/Ansible-Future-Directions.pdf -------------------------------------------------------------------------------- /presentations/2019-01-31/Introducing Ansible to matrix-final.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2019-01-31/Introducing Ansible to matrix-final.pdf -------------------------------------------------------------------------------- /presentations/2019-01-31/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2019-01-31/README.rst -------------------------------------------------------------------------------- /presentations/2019-01-31/automate-k8s-workloads-ansible.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2019-01-31/automate-k8s-workloads-ansible.pdf -------------------------------------------------------------------------------- /presentations/2019-03-19/01 - Ansible at G-Research.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2019-03-19/01 - Ansible at G-Research.pdf -------------------------------------------------------------------------------- /presentations/2019-03-19/04 - How I Provision My MacBook with Ansible.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2019-03-19/04 - How I Provision My MacBook with Ansible.pdf -------------------------------------------------------------------------------- /presentations/2019-03-19/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2019-03-19/README.rst -------------------------------------------------------------------------------- /presentations/2019-06-13/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2019-06-13/README.rst -------------------------------------------------------------------------------- /presentations/2019-06-13/keptn - ansible meetup london june 2019.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2019-06-13/keptn - ansible meetup london june 2019.pdf -------------------------------------------------------------------------------- /presentations/2019-08-29/DevOps-Pipelines.to.bridge.the.Gap-BartVanBos.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2019-08-29/DevOps-Pipelines.to.bridge.the.Gap-BartVanBos.pdf -------------------------------------------------------------------------------- /presentations/2019-08-29/James Freeman - Positive Psychology with Ansible.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2019-08-29/James Freeman - Positive Psychology with Ansible.pdf -------------------------------------------------------------------------------- /presentations/2019-08-29/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2019-08-29/README.rst -------------------------------------------------------------------------------- /presentations/2019-11-25/Managing VMware VMs with Ansible.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2019-11-25/Managing VMware VMs with Ansible.pdf -------------------------------------------------------------------------------- /presentations/2019-11-25/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2019-11-25/README.rst -------------------------------------------------------------------------------- /presentations/2019-11-25/The_power_of_local_facts.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2019-11-25/The_power_of_local_facts.pdf -------------------------------------------------------------------------------- /presentations/2020-01-29/Ansible Callback Plugins.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2020-01-29/Ansible Callback Plugins.pdf -------------------------------------------------------------------------------- /presentations/2020-01-29/G-Research_Better_Playbooks.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2020-01-29/G-Research_Better_Playbooks.pptx -------------------------------------------------------------------------------- /presentations/2020-01-29/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2020-01-29/README.rst -------------------------------------------------------------------------------- /presentations/2020-06-03/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2020-06-03/README.rst -------------------------------------------------------------------------------- /presentations/2020-06-03/The Evolution of Ansible Tower at Gamesys.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2020-06-03/The Evolution of Ansible Tower at Gamesys.pdf -------------------------------------------------------------------------------- /presentations/2020-09-10/Ansible Inventory Plugins.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2020-09-10/Ansible Inventory Plugins.pdf -------------------------------------------------------------------------------- /presentations/2020-09-10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2020-09-10/README.md -------------------------------------------------------------------------------- /presentations/2020-09-10/Vault workflows with Ansible.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2020-09-10/Vault workflows with Ansible.pdf -------------------------------------------------------------------------------- /presentations/2020-09-10/ansible-goss-testing.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2020-09-10/ansible-goss-testing.pdf -------------------------------------------------------------------------------- /presentations/2021-05-25/Deploying-PHP-Ansistrano.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2021-05-25/Deploying-PHP-Ansistrano.pdf -------------------------------------------------------------------------------- /presentations/2021-05-25/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2021-05-25/README.md -------------------------------------------------------------------------------- /presentations/2022-04-19/Deploying an OpenStack infrastructure on a single server with Ansible.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2022-04-19/Deploying an OpenStack infrastructure on a single server with Ansible.pdf -------------------------------------------------------------------------------- /presentations/2022-04-19/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2022-04-19/README.md -------------------------------------------------------------------------------- /presentations/2022-04-19/puppet_2_ansible.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2022-04-19/puppet_2_ansible.pdf -------------------------------------------------------------------------------- /presentations/2024-09-23/2024-09-ansible-community-team.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2024-09-23/2024-09-ansible-community-team.pdf -------------------------------------------------------------------------------- /presentations/2024-09-23/2024-09-ansible-devtools.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2024-09-23/2024-09-ansible-devtools.pdf -------------------------------------------------------------------------------- /presentations/2024-09-23/2024-09-ansible-pilot-from-zero-to-hero.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2024-09-23/2024-09-ansible-pilot-from-zero-to-hero.pdf -------------------------------------------------------------------------------- /presentations/2024-09-23/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2024-09-23/README.md -------------------------------------------------------------------------------- /presentations/2024-11-21/Compliance.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2024-11-21/Compliance.pdf -------------------------------------------------------------------------------- /presentations/2024-11-21/Infrastructure as Code - VPS provisioning and configuration on Hetzner Cloud.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2024-11-21/Infrastructure as Code - VPS provisioning and configuration on Hetzner Cloud.pdf -------------------------------------------------------------------------------- /presentations/2024-11-21/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2024-11-21/README.md -------------------------------------------------------------------------------- /presentations/2025-02-27/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2025-02-27/README.md -------------------------------------------------------------------------------- /presentations/2025-02-27/The Tao of Ansible.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2025-02-27/The Tao of Ansible.pdf -------------------------------------------------------------------------------- /presentations/2025-02-27/panel.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2025-02-27/panel.pdf -------------------------------------------------------------------------------- /presentations/2025-06-05/Ansible 101 - Getting Started on your Ansible Journey.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2025-06-05/Ansible 101 - Getting Started on your Ansible Journey.pdf -------------------------------------------------------------------------------- /presentations/2025-06-05/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2025-06-05/README.md -------------------------------------------------------------------------------- /presentations/2025-06-05/Tame the Chain- Smart VM Dependency Management with Ansible.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-london-meetup/HEAD/presentations/2025-06-05/Tame the Chain- Smart VM Dependency Management with Ansible.pdf --------------------------------------------------------------------------------