• Home
  • Workshops
  • Services
  • About us
  • 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

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

Preparation for the Certified Kubernetes Administrator (CKA) Exam

4-day intensive CKA exam prep: Build clusters from scratch, fix production-like failures, secure etcd data, and configure RBAC. After this workshop, you'll master all 5 exam domains (Troubleshooting 30%, Cluster Architecture 25%, Networking 20%, Workloads 15%, Storage 10%) and be ready for certification.

Share via email
  • Workshop levelIntermediate
  • Satisfied participants2340+
  • Days4
  • LanguageGerman & English
  • Workshop codeDW6

Workshop Details

What makes this workshop stand out

🎯

What you will learn and take away

You prepare intensively for the CKA exam in 4 days, covering all 5 exam domains: Troubleshooting (30%), Cluster Architecture (25%), Services & Networking (20%), Workloads & Scheduling (15%), Storage (10%).

What you'll learn:

  • You build clusters with kubeadm (not managed services like EKS/GKE), secure etcd data with TLS certificates, and perform zero-downtime upgrades
  • You systematically fix NotReady nodes, debug CNI issues, and repair failed Pods with kubectl, journalctl, and systemctl
  • You configure RBAC (Roles, ClusterRoles, ServiceAccounts), Network Policies (Ingress/Egress rules), and Resource Quotas for multi-tenant scenarios
  • You work with Ingress/Gateway API (Traefik, Caddy), Storage (PersistentVolumes, StatefulSets), and deployment tools (Helm, Kustomize)

After the workshop:

  • You know the most common mistakes in the exam and how to avoid them
  • We show you Killer.sh (practice simulator with 2 sessions of 36h each) that you can use for independent preparation
  • You know how to effectively use the allowed documentation during the 2-hour exam
💼

Value for your team

The CKA certification is the industry standard for Kubernetes administration. It demonstrates that your team can operate production-grade clusters without external help.

Why this workshop:

  • Reduced preparation time: Only 2-3 weeks of follow-up after the workshop instead of 8-12 weeks of self-study
  • Faster problem resolution: Certified admins fix cluster outages systematically (shorter MTTR)
  • Fewer escalations: Your team handles NotReady nodes, CNI issues, and etcd backups independently instead of waiting for external consultants
  • Preventable outages: Standardized upgrade processes and backup strategies reduce configuration errors

Exam details:

  • The certification is valid for 2 years. The exam costs USD 445 separately, includes one free retake, and is not part of the course price (Linux Foundation, as of July 2026)
  • Killer.sh access (2 exam simulations of 36h each) is included with CKA voucher purchase
  • Small groups of up to 8 participants, so we can address questions from your specific cluster context
📋

Prerequisites

Prerequisites:

  • Basic Kubernetes knowledge (Pods, Deployments, Services)
  • Experience in system administration or DevOps environments
  • Confident with Linux systems and command line
  • Familiarity with a text editor (vim, nano) and YAML syntax

Not required:

  • Production experience with Kubernetes clusters
  • Knowledge of cluster installation or upgrades
  • Experience with etcd, CNI plugins, or storage backends
  • Prior Kubernetes certifications

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: Cluster installation, administration, and backup with kubeadm

8 topics
09:00–09:15💭 Questions & Answers

Get a structured overview of the CKA certification (Certified Kubernetes Administrator): exam format (2 hours, 15-20 tasks, 66% passing score), the 5 exam domains (Troubleshooting 30%, Cluster Architecture 25%, Services & Networking 20%, Workloads & Scheduling 15%, Storage 10%), and practical learning strategies. Understand how to optimize your exam time and what skills the certification demonstrates.

Understand how a Kubernetes cluster is structured and which components work together. The control plane manages all decisions (API server as command center, etcd as data store, scheduler for placement), while worker nodes do the actual work. This knowledge is essential for quickly isolating errors and understanding where problems can occur.

kubernetesKubernetes

Kubernetes uses various container runtimes like containerd or CRI-O to actually start containers. Learn how these runtimes are integrated, how to switch between them, and how to identify runtime-specific issues. This is especially important when containers won't start or terminate unexpectedly.

kubectl is your primary tool for cluster management. Learn how to quickly retrieve information, debug problems, and edit resources directly. Especially important: when is a fast command line shortcut worth it, and when should you work with YAML files? This decision saves valuable minutes during the exam.

In practice and during the exam, you frequently work with multiple clusters simultaneously (e.g., test, staging, production). Learn how to seamlessly switch between different clusters while maintaining overview. You'll also understand how access configuration works and what to do when authentication fails.

12:00–13:00🥪 Lunch Break

Build a production-ready Kubernetes cluster from scratch. Learn how individual components are initialized, how worker nodes join, and how the network plugin enables pod communication. By the end, you'll understand exactly what happens during cluster startup and can systematically fix installation issues.

kubeadmkubeadm

A Kubernetes upgrade follows a controlled order because the control plane and workers only interoperate across supported version skews. You remove a Node from scheduling with cordon and drain, update the intended components, and return it to service. While doing so, you observe the workloads and assess which conditions preserve their availability during the upgrade.

etcd holds the authoritative cluster state; a backup is only useful when the snapshot, certificates, and restore path fit together. You create a snapshot, inspect its status, and restore the prepared cluster state from that backup. You then compare Kubernetes resources before and after the restore and identify which operational data must be backed up separately.

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

Day 2: Pods, networking, high availability, and Deployments

8 topics
09:00–09:30💭 Questions & Answers

Pods are the basic units in Kubernetes. Learn various design patterns: a Pod with multiple containers working together (e.g., main app + log collector), containers that perform preparatory tasks before startup, and how to set up health checks so Kubernetes automatically replaces unhealthy containers. These patterns are indispensable in practice.

Kubernetes must decide how much CPU and RAM each container gets. Learn how to define requests (minimum requirements) and limits (upper bounds) per container so critical applications are guaranteed sufficient resources and no single app can monopolize the entire server. This prevents performance issues and keeps your cluster stable.

With Deployments, you run applications that automatically run multiple instances and restart on failures. Especially important: how to roll out updates via rolling update without users experiencing downtime. Learn the various update strategies and how to quickly revert to the previous version via rollback when problems arise.

Systematic troubleshooting separates symptoms, the affected layer, and the cause instead of trying commands at random. Given a prepared failure, you inspect Pods, Nodes, and related services with kubectl, journalctl, and systemctl, form a hypothesis, and test it against available events and logs. The result is a traceable diagnostic path you can reuse for other cluster failures.

12:00–13:00🥪 Lunch Break

Pods come and go, their IP addresses change. Services give your applications a stable address where they're always reachable. Learn the different service types and when to use each: internally in the cluster, accessible from outside, or for special database setups. This is fundamental for any Kubernetes application.

Kubernetes itself doesn't handle networking: that's done by a CNI plugin (Container Network Interface). Learn how these plugins connect Pods across different servers and how to identify network problems. Understanding the network layer is essential when Pods can't reach each other or the network is slow.

Not everything runs continuously: database migrations, nightly backups, generating reports. Learn how to implement one-time tasks (Jobs) and scheduled jobs (CronJobs) in Kubernetes. These workload types are perfect for batch processing and automated maintenance work. Understand how Kubernetes recognizes successful jobs, handles retries on failures, and cleans up old job results.

Some services must run on every server: log collectors, monitoring agents, storage drivers. With a DaemonSet, you automatically deploy such system services on all nodes (or a selection). As soon as a new server joins, Kubernetes automatically starts the service there.

16:00–16:30💭 Questions & Answers

Day 3: Ingress, network policies, and persistent storage

6 topics
09:00–09:30💭 Questions & Answers

Large clusters quickly become confusing. Namespaces are like virtual rooms that separate different teams or projects. Learn how to organize resources cleanly and assign fixed resource budgets (ResourceQuotas) to each area: maximum CPU, RAM, number of Pods. With LimitRanges, you set default values and prevent individual Pods from claiming too many resources. This prevents one team from accidentally consuming everyone else's resources.

Make your applications accessible from outside: HTTP/HTTPS routing with the Ingress API and the modern Gateway API. Learn various controller implementations (Traefik, Caddy) and configure path-based and host-based routing for multi-service architectures. This is essential for deploying production applications securely and at scale.

traefikTraefikcaddyCaddy
12:00–13:00🥪 Lunch Break

Network Policies describe permitted connections through Pod, Namespace, and IP selection, while the installed network plugin enforces them. You first create a restrictive baseline for a sample workload, then allow only the required ingress and egress traffic. Connection tests before and after the policy show which rule permits a given communication path.

Containers often need access to files: temporary caches, configuration files, secrets. Learn the various volume types and when to use each. This ranges from simple temporary directories to complex storage solutions for databases.

When containers restart, their data is normally gone. For databases and stateful apps, you need permanent storage. Learn how to connect storage systems via PersistentVolumes, request storage with a PersistentVolumeClaim, and bind it to your applications. With StorageClasses, Kubernetes even provisions new storage automatically when needed.

Databases are different from normal apps: each instance needs its own identity and storage. With a StatefulSet, you properly deploy such stateful workloads so they retain their data during updates and restarts and start up in the correct order.

15:30–16:30💭 Questions & Answers

Day 4: Configuration, scheduling, and CKA exam preparation

7 topics
09:00–09:30💭 Questions & Answers

Applications need configuration: database URLs, feature flags, API keys. ConfigMaps separate configuration from container images, allowing you to deploy the same app in different environments. Secrets protect sensitive data like passwords and certificates from being stored unencrypted. Learn how to inject this data as environment variables or files into your Pods and when each method makes sense.

RBAC connects permitted API actions to subjects without granting broad access across the cluster. You define a namespace-scoped Role, assign it to a user or ServiceAccount through a RoleBinding, and compare it with a ClusterRole. You then check permissions from the subject's perspective and identify where the scope of each rule ends.

Kubernetes automatically decides which server runs which Pod: does the server have enough resources? Does the Pod fit this node? Understand how these decisions are made and when you should intervene. Sometimes you want to control where Pods land: GPU workloads only on GPU servers, no databases on master nodes, apps distributed across availability zones. Learn the various placement mechanisms (NodeSelector, taints/tolerations, node/pod affinity) and when to use each. This is essential for high availability and special hardware requirements.

11:30–12:30🥪 Lunch Break

Many popular applications (monitoring, databases, message queues) have complex setups with dozens of YAML files. Helm is like an app store for Kubernetes: you install ready-made packages with one command and customize them to your needs. Learn how to use, update, and remove these packages when needed.

helmHelm

Kustomize keeps shared Kubernetes manifests in a base and expresses environment differences as overlays instead of copying entire files. You create a development, test, or production adjustment for replicas, resources, or configuration values and render the result. Comparing it with the base shows exactly which fields change and which definitions remain shared.

kustomizeKustomize

The CKA exam is different from theoretical tests: you solve real problems in a real cluster. Learn proven strategies for time management, how to effectively use the allowed documentation, and what to expect in the Killer.sh simulator. This session gives you the confidence to successfully pass the exam.

Everyone learns differently and has different prior knowledge. You'll receive concrete recommendations on how to continue learning after the workshop: which topics to deepen? Which practice platforms to use? How often should you practice? This tailored plan maximizes your chances of exam success.

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.7/ 5

44 reviews for this workshop · unfiltered

Trainer
4.8
Content
4.7
Didactics
4.5

Over 152 IT professionals trained in 39 workshops since 2021

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

Including BMW, Bundeswehr, Deutsche Bahn and many more.

"The trainer's materials were very well prepared, and the approach was clearly structured, moving from the easy to the more demanding blocks of content. Advanced Kubernetes fundamentals and the path to a solution were shown using practical examples, and questions were always resolved with an answer and a fitting real-world example. My expectations were met, and I can only recommend this seminar."

Default avatar picture of DevNinjas
Stefan J.
@BMI

"Nico was very organized, technically excellent, and brought a great atmosphere from day one. He knows how to get people excited about the subject and conveys the knowledge very well. Questions were answered right away unless they would have given away later topics, and he then picked those up again at the right moment. All in all a very successful course and definitely a recommendation. Thank you, Nico, for the instructive and cool time."

Default avatar picture of DevNinjas
Pascal S.

"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

"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

"Overall, I thought the training was very good. The instructor was technically very competent and gave plenty of input on every topic. On a personal level it was very pleasant too, which made it fun. The learning environment was absolutely exemplary in its setup and usability. I will definitely recommend the training and DevNinjas."

Default avatar picture of DevNinjas
Marius B.
@Dataport

"Thank you, Nico, for this great workshop! It was very helpful for me and I learned a great deal."

Default avatar picture of DevNinjas
Fabian S.

"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

"Top support, as always: I am always happy to come back. The seminar met my expectations exactly. Without this course, trying to work your way into containers and Kubernetes on your own is like poking around in the dark. The fundamentals were well summarised, the connections explained, and the exercises made you think along. The complex subject was perfectly prepared for further self-study."

Default avatar picture of DevNinjas
Georgius S.
@IT.NRW

"Thanks for the workshop. You explained the material well and also showed me that I still have a lot ahead of me. You addressed individual questions specifically, which I really appreciated."

Default avatar picture of DevNinjas
Martin S.

"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.

"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

"Very competent, very pleasant teaching style."

Default avatar picture of DevNinjas
Pascal Knöll
@Bundeswehr

"Nico was technically excellent, he had an answer to every question."

Default avatar picture of DevNinjas
Manuel Becker
@innovas GmbH

"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

"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

"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

Continue Learning

Related Workshops for You

Next Step
Preparation for the Certified Kubernetes Security Specialist (CKS) Exam Workshop
Advanced

Preparation for the Certified Kubernetes Security Specialist (CKS) Exam

In our four-day CKS workshop, you'll gain hands-on expertise in all relevant security measures and best practices to secure your Kubernetes cluster. Fully prepared to pass the CKS exam with confidence.
4 Days€2,220.00
Alternative
Preparation for the Certified Kubernetes Application Developer (CKAD) Exam Workshop
Intermediate

Preparation for the Certified Kubernetes Application Developer (CKAD) Exam

In our three-day CKAD workshop, you'll gain hands-on expertise in essential Kubernetes functions: pod design, network services, deployment strategies, and self-healing. Fully prepared to pass the CKAD exam with confidence.
3 Days€1,665.00
Extension
Kubernetes Monitoring with Prometheus, Grafana & Loki Workshop
Advanced

Kubernetes Monitoring with Prometheus, Grafana & Loki

After four days, you will operate a production-ready Kubernetes monitoring stack with Prometheus, Grafana, and Loki. From installation through PromQL and alerting to SLOs and performance tuning: everything hands-on with your own cluster.
4 Days€2,220.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

Formal Prerequisites: None (the CKA exam has no official requirements).

Recommended Skills for Optimal Success:

  • Kubernetes Basics: You should already know Pods, Deployments, and Services
  • Linux Administration: Confident use of systemctl, journalctl, Bash, text editor (vim or nano)
  • Networking Basics: Basic understanding of IPs, ports, DNS (no expert knowledge needed)

You Don't Need to Be a Cluster Admin: This workshop covers all CKA topics from the ground up, including cluster installation with kubeadm, etcd backups, CNI configuration, and RBAC. If you've only worked with Kubernetes as a developer so far, you'll be ready for the exam after 2-4 weeks of hands-on practice (workshop + Killer.sh exercises).

Optional: If you have no Kubernetes experience yet, we recommend Kubernetes Introduction (DW2) or CKAD Application Developer (DW5) as preparation.

The CKA exam is challenging but achievable with structured preparation. You have 2 hours for 15-20 hands-on tasks (no multiple choice), with a 66% passing score.

The Biggest Challenge:

  • Time pressure (approx. 6-8 minutes per task)
  • Deep understanding of cluster architecture required (etcd backups, kubeadm upgrades)
  • Systematic troubleshooting (NotReady nodes, CNI issues, kubelet logs)

After This Workshop:

  • You know all 5 exam domains (Troubleshooting 30%, Cluster Architecture 25%, Networking 20%, Workloads 15%, Storage 10%)
  • You practice exam-relevant scenarios (cluster installation, etcd backup/restore, RBAC configuration)
  • The CKA Exam Voucher (available separately from Linux Foundation) includes Killer.sh access (2 sessions, 36 hours each), a realistic exam simulator

Candidates with structured preparation (like this 4-day course + 2-3 weeks follow-up) typically pass on their first or second attempt.

CKA (Cluster Administrator) focuses on cluster operations and infrastructure: cluster installation (kubeadm), upgrades, etcd backups, node management, CNI configuration, troubleshooting (NotReady nodes, kubelet logs).

CKAD (Application Developer) covers application development: Pods, Deployments, Services, ConfigMaps, Secrets, Helm, Observability (logging, monitoring).

Which certification for whom:

  • CKA: Platform Engineers, Cluster Administrators, SRE (infrastructure focus), DevOps teams operating clusters themselves
  • CKAD: Application Developers, DevOps Engineers (CI/CD focus), SRE (app focus)

Typical Learning Path: Administrators and Platform Engineers start with CKA (infrastructure), then CKS (security). Developers start with CKAD (applications), then optionally CKA for deeper understanding. We offer all three as workshops: CKAD Application Developer (DW5) and CKS Security Specialist (DW7).

After the workshop, you can independently install, operate, and troubleshoot Kubernetes clusters: cluster installation with kubeadm, zero-downtime upgrades, etcd backups, RBAC configuration, Network Policies, storage management. You understand cluster architecture deeply and can systematically fix NotReady nodes, CNI issues, and kubelet errors.

In your daily work, you use this for:

  • Production-grade cluster administration (backups, upgrades, monitoring)
  • Troubleshooting (reduce MTTR, prevent outages)
  • Security hardening (RBAC, Network Policies, Pod Security Standards)
  • Team onboarding (share best practices)

Next Steps:

  • CKS Security Specialist (DW7): Security hardening (Pod Security Standards, image scanning, runtime security, audit logging), ideal for production environments
  • Observability & Monitoring (DW10): Operate Prometheus, Grafana, and Loki in production on Kubernetes
  • Introduction to OpenTelemetry: Instrument applications and process telemetry through OTLP and the Collector
  • Practice: 2-3 weeks of Killer.sh + your own cluster exercises → take the CKA exam

With Kubernetes experience: 4-6 weeks of intensive preparation (10-15 hours/week). Without prior knowledge: 8-12 weeks.

Our 4-day workshop significantly reduces self-study time:

  • You cover all 5 exam domains in a structured way (instead of fighting through fragmented online tutorials)
  • You receive best practices for cluster installation, etcd backups, and troubleshooting
  • After the workshop: 2-3 weeks of follow-up with Killer.sh and your own exercises typically suffice

Essential for preparation:

  • Killer.sh sessions (2×36h, included in CKA voucher), intentionally harder than the real exam
  • Hands-on practice with real clusters (KodeKloud Labs, your own VMs, or cloud environments)
  • Train documentation usage (allowed during exam: kubernetes.io, GitHub, Helm Docs)

ROI: Certified CKA administrators solve cluster problems systematically (shorter MTTR), avoid preventable outages, and reduce dependencies on external consultants.

No, the CKA exam voucher is not included in the workshop price. You purchase it after the workshop directly from the Linux Foundation for USD 445 (as of July 2026). The free retake comes with the voucher, not with the workshop price.

Included in the voucher:

  • 1x CKA exam (2 hours, online, proctored)
  • 1x free retake attempt
  • 2x Killer.sh sessions (36 hours of access to the exam simulator each)

The voucher is valid for 12 months after purchase, so you schedule the exam date flexibly. In the workshop, we prepare you specifically for both the exam and the simulator so you can make the most of the voucher.

Our trainings can be held in German or English. Each public date in the date list is labelled with its language. English delivery is additionally available on request at any time, for example as a corporate training.

All practical exercises take place in the DevNinjas Dojo, our browser-based cloud learning environment. Every participant receives dedicated resources: own Kubernetes clusters, VMs, containers (depending on the workshop topic). You work not in a shared environment, but have full control over your own infrastructure.

Benefits:

  • Your own clusters & servers: You get dedicated resources for your exercises
  • No software installation required: Everything runs in your browser
  • Works everywhere: Even in strict enterprise networks with VPN, proxy, and firewalls
  • Open protocols: SSH, HTTPS, standardized web terminals (no proprietary client)
  • Ready immediately: Login and start with the exercise right away

You only need a modern browser (Chrome, Firefox, Edge) and internet access. The Dojo is available to you throughout the entire workshop.

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.

Workshop Dates

Workshop dates

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

Guaranteed to run

07. – 10. September 2026

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

Online🇩🇪German

2.220,00 €

per person · plus 19% VAT

Book date
Guaranteed to run

07. – 10. September 2026

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

Online🇬🇧English

2.220,00 €

per person · plus 19% VAT

Book date
Guaranteed to run

21. – 24. September 2026

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

Online🇩🇪German

2.220,00 €

per person · plus 19% VAT

Book date
Guaranteed to run

05. – 08. Oktober 2026

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

Online🇩🇪German

2.220,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