• Home
  • Workshops
  • Services
  • Contact
Mont-Cenis-Straße 399, Herne 44627, Germany
+49 (0) 221 9865099 0
hello@devninjas.io

Workshops

  • Docker Fundamentals
  • Kubernetes Introduction
  • CKAD Exam Prep
  • CKA Exam Prep
  • All Workshops

Services

  • Shogun · Platform Consulting
  • Mamori · Managed Retainer
  • Kensho · Platform Audit

Company

  • Contact
  • Sitemap
2026 • Coded with by DevNinjas
  • Imprint
  • Privacy
  • GTC

Introduction to Ansible

Learn to use Ansible confidently in three days. From inventory configuration through playbooks and Jinja2 templates to roles and Ansible Vault. You work hands-on in your own cloud environment and automate real-world scenarios.

Share via email
  • Workshop levelNo prior knowledge needed
  • Satisfied participants2340+
  • Days3
  • LanguageGerman & English
  • Workshop codeDW23

Workshop Details

What makes this workshop stand out

🎯

What you will learn and take away

After three days of Ansible training you automate server configurations reliably and repeatably. What you take away:

  • Infrastructure as Code with Ansible playbooks: server setups versioned in Git, reproducible on any host
  • Dynamic configurations with Jinja2 templates and Ansible Vault: generate environment-specific configs, manage secrets encrypted
  • Modular automation with roles and collections: reusable building blocks that work across teams and projects

All exercises run in our cloud environment (DevNinjas Dojo). No local setup, every participant gets dedicated VMs.

Want to continue? Our GitLab CI/CD training shows how to integrate Ansible into automated pipelines.

💼

Why the investment pays off

When your team configures servers manually, environments drift apart, deployments take hours and every infrastructure change carries risk. This Ansible training changes that:

  • Reproducible infrastructure: Standardised playbooks and roles ensure staging and production are built identically
  • Faster deployments: Your team can roll out server configurations independently without waiting for individual specialists
  • Fewer errors during changes: Ansible Vault protects credentials, ansible-lint checks code before execution, idempotency prevents unwanted side effects

Small groups of maximum 8 participants so we can address questions from your specific project context.

📋

Prerequisites

Required:

  • Basic Linux knowledge and experience with the terminal (creating files, navigating, using a text editor)
  • Comfortable working with SSH (connecting to a remote server)

Not required:

  • Programming skills (Python or other languages)
  • Prior experience with Ansible or other configuration management tools
  • YAML knowledge (covered in the workshop)

Unsure about the Linux fundamentals? Our Linux introduction provides the ideal preparation.

Workshop Agenda

Your Agenda at a Glance

Hands-on and structured. Every participant works in their own cloud environment. The agenda shows you what to expect each day.

Day 1: Understand Ansible, install it and automate your first hosts

5 topics
09:00–10:00💬 Introduction Round

Why do teams choose Ansible instead of distributing configurations manually via SSH? This module explains the agentless architecture: Control Node, Managed Nodes, Inventory and Modules working together. You will understand the difference between push- and pull-based tools and be able to assess when Ansible is the better choice over Terraform, Puppet or Chef.

ansibleAnsible

You install ansible-core on your control node and set up the SSH connection to multiple managed nodes. You configure SSH key authentication, test the connection with ansible -m ping and adapt ansible.cfg to your environment. By the end of this block you will have a working Ansible environment with three managed hosts.

12:00–13:00🥪 Lunch Break

A clean inventory is the foundation of every automation effort. You create inventories in INI and YAML format, group hosts by function (e.g. webservers, databases) and define host and group variables. Then you work with nested groups and see how variables can be organised through group_vars/ and host_vars/ directories.

Before writing playbooks, you use Ansible for quick interventions: with ad-hoc commands you install packages via ansible -m apt, manage services with the service module and copy files to all hosts simultaneously. You learn the principle of idempotency and use ansible-doc to discover which modules are available and how their parameters work.

From syntax to your first working result: you learn the YAML basics (indentation, lists, dictionaries) and write your first playbook. The playbook updates packages, creates a user and deploys a configuration file. You run it with ansible-playbook and observe the output: changed, ok and failed explained in detail.

16:00–16:30💭 Questions & Answers

Day 2: Deepen playbook skills, write templates and protect secrets

5 topics
09:00–10:00💭 Questions & Answers

Ansible offers multiple ways to use data in playbooks. You work with the variable hierarchy (inventory, playbook, role, extra-vars) and understand which level takes precedence. Using the setup module you collect facts about your hosts (OS, IP addresses, memory) and store task results in registers for later decisions.

Not every task should run on every host. With when conditions you control which tasks execute under which circumstances (e.g. only on Debian systems). Loops with loop save you from duplicating tasks for multiple packages or users. Handlers ensure that services only restart when something actually changed. Finally, you use block and rescue for structured error handling.

12:00–13:00🥪 Lunch Break

Static configuration files break when hostnames, IPs or ports differ between environments. With Jinja2 templates you create dynamic configurations: insert variables with {{ }}, iterate lists with {% for %} and transform values with filters like default, join or upper. You build an Nginx configuration template that automatically adapts to each host.

Passwords and API keys do not belong in plain text in your repository. With Ansible Vault you encrypt individual variables or entire files using ansible-vault encrypt. You work with vault IDs for different passwords per environment and integrate Vault into your playbook execution with --ask-vault-pass and password files.

All building blocks from today come together: you write a playbook that installs Nginx, distributes a configuration via Jinja2 template, sets firewall rules with the ufw module and starts the service. Variables control port and server name, a handler restarts Nginx only when the configuration changes. At the end a working web server runs on your managed nodes.

ansibleAnsiblenginxNGINX
16:00–16:30💭 Questions & Answers

Day 3: Use roles, Galaxy and Ansible in team workflows

5 topics
09:00–10:00💭 Questions & Answers

As playbooks grow, structure becomes essential. You create your first Ansible role with ansible-galaxy init and understand the directory layout: tasks/, templates/, handlers/, defaults/ and vars/. Then you refactor yesterday's web server playbook into a reusable role and define role dependencies to manage relationships between roles.

Not everything needs to be written from scratch. On Ansible Galaxy you find community roles for common tasks and integrate them via requirements.yml. You learn the difference between roles and collections (the modern package format since Ansible 2.10) and install a collection with ansible-galaxy collection install. Finally, you check which collections already ship with ansible-core.

12:00–13:00🥪 Lunch Break

Automation needs quality assurance. You configure ansible-lint and see which rules catch typical mistakes (e.g. missing name attributes, deprecated syntax). With --check and --diff you dry-run playbooks before they touch real hosts. Finally, you set up a simple lint check that can be integrated into a CI pipeline.

The workshop's final project: you deploy a three-tier application across multiple hosts. One role installs the database (PostgreSQL), a second one the application server and a third the load balancer (Nginx). Inventory groups, variables and templates from the past days come together. At the end a complete stack runs that you can reproduce with a single ansible-playbook command.

ansibleAnsiblepostgresqlPostgreSQLnginxNGINX

What comes after the basics? This module provides an overview of AWX as a web UI and REST API for Ansible, Execution Environments as containerised runtime environments (the successor to Python virtualenvs) and integrating Ansible into CI/CD pipelines with GitLab CI or GitHub Actions. You get guidance on which of these topics are relevant for your automation journey.

16:00–16:30💭 Questions & Answers

Our Benefits

All from one hand!

With our high-quality trainings and workshops, you can bring yourself and your team up to date. All this with many benefits that you get from us.

👨‍💻High Practical Content
70% hands-on, 30% theory. You work continuously with real scenarios and take working code home with you. No PowerPoint battles, but directly applicable knowledge for your projects.
☁️Cloud Learning Environment
DevNinjas Dojo: Your own Kubernetes clusters and VMs for each participant in the browser. No installation, works despite VPN/proxy/firewalls. You work with dedicated resources, not in shared environments.
🥷Experienced Trainers
Full-time DevOps engineers and consultants from DevNinjas lead the workshops. Not external trainers, but specialized employees actively working on client projects and sharing real-world experience.
👥Small Groups
Maximum 8 participants per workshop. Everyone gets individual support from the trainer. Your specific questions and use cases get answered, not passed over in anonymous crowds.
🏗️Real-World Scenarios
No toy examples or hello-world demos. You work with production-grade setups: multi-container applications, CI/CD pipelines, monitoring stacks. Directly transferable to your production environments.
🎓Certification
You receive an official certificate of attendance as PDF and a verified LinkedIn badge. Document your professional development for your employer, HR, and recruiters professionally.

Testimonials

How participants experience our trainings

4.9/ 5

1047+ participant reviews · unfiltered

across all DevNinjas trainings

Trainer
5.0
Content
4.8
Hands-on
4.8

DevNinjas overall: over 1,384 participants · 207 companies · 241 workshops

Including BMW, Bundeswehr, Deutsche Bahn and many more.

"My colleagues specifically looked for a sysadmin course for Docker with another provider and had an instructor who only set up an IDE for them and then only worked on a task sheet with development tasks. I had a course with lots of background information, an instructor who had a really extensive knowledge of the whole subject matter beyond the slides, and I feel optimally informed."

Default avatar picture of DevNinjas
Johannes Bernstein
@TRIMET Gelsenkirchen SE

"The advanced Kubernetes workshop at DevNinjas really helped me grow professionally. The content was practical and excellently prepared, so even complex topics like RBAC, network policies and Ingress were conveyed in an understandable and directly applicable way. The deep expertise of the trainer was especially impressive and noticeable in every session. I can recommend this workshop to anyone who wants to use Kubernetes in production!"

Default avatar picture of DevNinjas
Marius Büttner
@Siemens AG

"From my perspective, the workshop had the right speed and an appropriate level of challenge. The subject matter was explained clearly by the instructor and practically consolidated with well-distributed exercises. Adjusting the workshop focus to the participants wishes was not a problem. Valuable practical experiences were shared, and even more specific questions were gladly answered. The instructor's professional expertise and extensive practical experience on the subject gave this workshop a special quality."

Default avatar picture of DevNinjas
S. Kaiser
@forcont business technology GmbH

"The seminar gave a very good overview of Docker administration, with a look at Kubernetes and how this knowledge simplifies everyday work. Many small, easy-to-follow examples with hands-on exercises and a focus on best practice consolidated what we learned. The instructor had an answer to every question, and for very specific questions he came back with a fitting example. The alternation between introductions and exercises was very well organised."

Default avatar picture of DevNinjas
Sebastian A.
@DMI GmbH & Co. KG

"The workshop was very informative and I could immediately spot the mistakes I had made in past Docker projects. Before, I lacked the theory and the fundamentals, so I had only been acting on best practice. Now I can write stable Dockerfiles and Docker Compose setups and secure them properly. A very good workshop that was also a lot of fun!"

Default avatar picture of DevNinjas
Timon Strangfeld

"In the workshop the most important Docker and Kubernetes topics were put together, prepared and explained superbly. The exercises fit precisely and were very well chosen in terms of difficulty. I am very satisfied with how much I learned in the five days and feel well prepared for upcoming tasks at work. Sure, you can teach yourself a lot on your own with AI tools, but without the workshop I would not have gained this overview or worked through so many exercises independently."

Default avatar picture of DevNinjas
Christine L.

"Nico is a very friendly and technically skilled instructor. He answered all questions well. You quickly notice that he combines academic expertise with many years of professional practice."

Default avatar picture of DevNinjas
Philipp van Wickevoort Crommelin
@parcIT GmbH

"The workshop gave me a very good insight into Kubernetes and made working with containers much clearer. Nico delivered the content in a practical and well-structured way, so I could quickly find my way around. The hands-on exercises in particular helped me apply what I learned directly. For anyone looking for a solid introduction to Kubernetes, this workshop is definitely recommended."

Default avatar picture of DevNinjas
Daniel Hagen
@DKB Service GmbH

"I really enjoyed the Docker & Kubernetes workshop at DevNinjas. Nico explained the complex topics around containers and orchestration in a very understandable and practical way. The mix of theory and hands-on exercises was perfect for being able to apply everything directly. I was able to take a lot away for my everyday work and now feel significantly more confident working with Docker and Kubernetes."

Default avatar picture of DevNinjas
Dominik Kneissl
@Siemens Healthineers

"The Docker workshop at DevNinjas was an all-round success. The content was clearly structured and practically delivered, including meaningful hands-on exercises. I took away a lot and feel significantly more confident working with Docker. Even more complex topics like multi-stage builds and networking were explained in an understandable way. A clear recommendation for anyone who really wants to understand Docker!"

Default avatar picture of DevNinjas
Daniel Müller
@Siemens Healthineers

"I really enjoyed the Docker workshop at DevNinjas! The content was well structured and clearly explained, even for beginners like me. The mix of theory and hands-on exercises was especially helpful for trying Docker directly. By the end, I was able to build my own images, configure containers and set up networks. Absolutely recommended for anyone who wants to learn Docker!"

Default avatar picture of DevNinjas
Pascal Schunk
@OEDIV

"The "Docker & Kubernetes Bundle" training provided me with solid, practical knowledge for everyday work and enabled me to handle Docker and Kubernetes professionally. The excellently structured material offers real added value, even beyond the workshop. The combination of technical depth and interactive delivery by the trainer rounded off the whole experience. An experience that continues to help me even after the training."

Default avatar picture of DevNinjas
Swen Strangfeld
@Bundesdruckerei GmbH

"It was fun and I learned a lot that I can actually apply directly in my company. The trainer's approach was very hands-on, and he repeatedly brought in real-world examples."

Default avatar picture of DevNinjas
Felix R.
@Dirk Rossmann GmbH

"I can recommend the Docker workshop at DevNinjas without reservation! The training was excellently structured: theory and practice complemented each other perfectly. The trainer always answered questions competently and clearly, making even more complex topics easily accessible. I was especially impressed by the professionally designed workshop materials, which are very useful as a reference even after the course. Overall, a thoroughly successful learning experience!"

Default avatar picture of DevNinjas
Lukas Graf
@Bundeswehr

"The seminar was superbly prepared, the group pleasantly small and the materials first-class. An excellent instructor who knows the subject inside out, takes time for the participants and answers questions in detail. The learning material alternated in a balanced way between theory and hands-on exercises that were timed excellently."

Default avatar picture of DevNinjas
Kevin H.
@Oest Holding GmbH

"Competent instructor. Individual approach to problems and topics. Interesting structure. Highly recommended to get an in-depth insight into the Docker world. The workshop was definitely worth it. Thanks!"

Default avatar picture of DevNinjas
H. Hillebrand
@PFSt NRW

Continue Learning

Related Workshops for You

Tooling
Introduction to Docker Workshop
Beginner

Introduction to Docker

Learn to use Docker confidently in two days. From the container CLI through Dockerfiles and multi-stage builds to Docker Compose. You work hands-on in a dedicated cloud environment, live online in groups of up to 8 participants.
2 Days€1,110.00
Tooling
Introduction to GitLab CI/CD Workshop
Beginner

Introduction to GitLab CI/CD

Learn GitLab CI/CD hands-on in two days. From your first .gitlab-ci.yml through Runners, Caching and Container Scanning with Trivy to Environments and Review Apps. You work in your own cloud environment.
2 Days€1,110.00
Extension
Introduction to Kubernetes Workshop
Beginner

Introduction to Kubernetes

Learn to use Kubernetes confidently in three days. From Pods and Deployments to Storage and deployment strategies. You work hands-on in your own cloud environment with kubectl, K9s, and Helm.
3 Days€1,665.00
Vincent Sturm - DevNinjas

Your Contact

Vincent Sturm

Key Account Manager

Looking for the right Kubernetes or DevOps training for your team? Vincent personally advises you on open workshops, certification prep and customized in-house training. He can also connect you with our consulting services. Get in touch with him directly.

vincent@devninjas.io
+49 221 9865099-4
WhatsApp Chat

Frequently asked questions

No, programming skills are not required. Ansible playbooks are based on YAML, a text-based data format that you learn from scratch on day one. We also introduce Jinja2 templates step by step. The only prerequisites are basic Linux terminal knowledge and experience with SSH.

Ansible and Terraform complement each other rather than competing:

Terraform creates infrastructure (VMs, networks, databases) via declarative configuration. It manages a state that represents the current state of resources.

Ansible configures what runs on that infrastructure: installing packages, setting up services, distributing configuration files. Ansible works agentless via SSH and does not require a central state.

In practice many teams use both tools: Terraform for provisioning, Ansible for configuration management.

After three days you can:

  • Configure servers: Roll out packages, users, services and firewall rules via playbook to any number of hosts simultaneously
  • Generate configuration files dynamically: With Jinja2 templates and variables per environment (dev, staging, production)
  • Protect secrets: Encrypt passwords and API keys with Ansible Vault
  • Build reusable roles and integrate community roles via Ansible Galaxy

Not covered: Dynamic cloud inventories (AWS, Azure), custom module development and AWX administration. For these topics we recommend working on your own projects after the workshop.

Every module consists of a short theory block followed by a hands-on exercise in our cloud environment (DevNinjas Dojo). Every participant gets dedicated VMs (no shared lab, no local installation).

The two hands-on projects on days 2 and 3 tie all learned concepts together: you deploy a full Nginx web server and a three-tier application with PostgreSQL, application server and load balancer.

Three days are realistic for a productive start. You learn all core concepts (inventory, playbooks, roles, Vault) and apply them in two complete hands-on projects: a web server deployment and a multi-tier application deployment across multiple hosts.

Reality check: After three days you can independently configure servers and automate deployments. For advanced topics like dynamic inventories, custom modules or AWX administration you will need further practice in your own projects.

Yes, Ansible can manage Windows servers via WinRM (Windows Remote Management) instead of SSH. There are dedicated modules like win_package, win_service and win_feature for Windows-specific tasks.

In this workshop we focus on Linux-based automation as this covers the most common use case. The concepts (playbooks, roles, variables, templates) are identical. If you want to automate Windows after the workshop, the transition is straightforward since only the modules and connection type change.

We recommend a maximum of 8 participants per training to ensure individual attention for each participant. For corporate trainings, arrangements for larger groups are possible.

Yes, upon completion you will receive an official certificate of attendance from DevNinjas as PDF. This confirms your successful participation and the topics covered. The certificate is perfect for conversations with your employer and your personnel file.

Additionally, you will receive a verified digital badge that you can directly embed in your LinkedIn profile (section "Licenses & Certifications"). The badge follows the Open Badges 2.0 standard and is verifiable via QR code at any time. This way you showcase your qualification and position yourself with recruiters.

Yes, all our workshops are also available as corporate training. We tailor content, duration and focus to the needs of your team.

Corporate trainings take place either on-site or remote. Submit your individual request and we will prepare an offer for you.

Workshop Dates

Workshop dates

Choose a suitable date and book directly online. All dates are guaranteed to run.

Guaranteed to runFew spots left

17. – 19. August 2026

09:00 - 16:00 (CET/CEST, German time)

Online🇩🇪German

1.665,00 €

per person · plus 19% VAT

Book date
Guaranteed to run

17. – 19. August 2026

09:00 - 16:00 (CET/CEST, German time)

Online🇬🇧English

1.665,00 €

per person · plus 19% VAT

Book date
Guaranteed to run

31. August – 02. September 2026

09:00 - 16:00 (CET/CEST, German time)

Online🇩🇪German

1.665,00 €

per person · plus 19% VAT

Book date
Guaranteed to run

07. – 09. September 2026

09:00 - 16:00 (CET/CEST, German time)

Online🇩🇪German

1.665,00 €

per person · plus 19% VAT

Book date

Your booking benefits

  • Guaranteed to run

    Every training date takes place: no cancellation due to low participant numbers.

  • Invoice after the workshop

    No prepayment: pay conveniently by invoice afterwards.

  • 3=2

    3-for-2 promotion*

    Register three participants, pay for two: the third seat is free.

  • Price per participant

    Transparent fixed price per participant, plus VAT.

  • No hidden costs

    Cloud lab (DevNinjas Dojo) and all training materials are included in the price.

  • Certificate & Open Badge

    Certificate of attendance plus a digital Open Badge for your LinkedIn profile included.

* Cannot be combined with other discounts.

Tailor a workshop for your team?

Custom content, flexible dates, from 1 participant.

Request