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

Share via email
  • Workshop levelAdvanced
  • Satisfied participants2340+
  • Days4
  • LanguageGerman & English
  • Workshop codeDW7

Workshop Details

What makes this workshop stand out

🎯

What you will learn and take away

This workshop is designed for experienced Kubernetes administrators and DevSecOps engineers pursuing the CKS certification. You'll gain hands-on expertise in:

  • Cluster hardening following CIS Benchmarks: You'll configure etcd TLS encryption, harden the API server, and secure Kubelet against attacks.
  • Supply chain security with modern tools: You'll sign container images with Cosign, generate SBOMs with Syft, and enforce policies with Kyverno.
  • Runtime monitoring and incident response: You'll monitor running containers with Falco, forensically analyze compromised clusters, and respond to security incidents.

Through intensive hands-on exercises in virtual Kubernetes environments, you'll be optimally prepared for the 2-hour performance-based exam.

💼

Value for your team

Security incidents cost companies an average of $4.44 million per data breach (IBM Cost of a Data Breach Report 2025). This workshop empowers your teams to proactively minimize risks:

  • Implement CIS Benchmarks: Your teams apply CIS Security Standards for Kubernetes, which can serve as a foundation for compliance frameworks like NIS2 and ISO 27001.
  • Reduce incident response time: With Falco, audit logs, and forensic techniques, your admins identify attacks significantly faster and limit damage.
  • Minimize supply chain risks: Signed container images and SBOM validation prevent compromised dependencies (critical for regulated industries: finance, healthcare, government).

The workshop takes place in small groups (max. 8 participants), allowing your team to clarify individual questions and work through hands-on scenarios.

📋

Prerequisites

Required:

  • Valid CKA certification (mandatory for CKS exam eligibility per CNCF). If not yet obtained: DW6: CKA Prep Course
  • 6+ months experience administering Kubernetes clusters (production environments)
  • Proficiency with Linux (command line, filesystems, processes, network tools like iptables, tcpdump)
  • Basic network security knowledge (firewalls, TLS/SSL, certificates)

Not required:

  • Prior experience with security tools like Falco, Trivy, or Cosign (covered in workshop)
  • Programming skills (basic YAML knowledge sufficient)

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 architecture, CIS benchmarks, and RBAC hardening

4 topics
09:00–09:30💬 Introduction Round

You'll analyze the security architecture of Kubernetes: The control plane (API server, etcd, scheduler, controller manager) and data plane (kubelet, kube-proxy, container runtime) are examined for typical vulnerabilities. You'll learn how TLS encryption for etcd, API server authentication, and kubelet hardening work, and understand the attack surface of each component. This is the foundation for all further hardening measures.

kubernetesKubernetes

You'll audit Kubernetes components against CIS Benchmarks using the kube-bench tool. You'll learn API server hardening (disable anonymous authentication, enforce RBAC mode), etcd security with client certificates, and kubelet access restrictions (disable read-only port). Each hardening measure is validated against official CIS criteria to achieve production-grade security standards.

You'll implement least privilege access with RBAC: You'll create Roles and ClusterRoles with minimal permissions, bind them to service accounts with RoleBindings, and prevent privilege escalation (no escalate or bind verb on Roles). You'll learn to differentiate between service accounts and user accounts (OIDC-based users vs. token-based service accounts) and audit existing permissions with tools like rbac-lookup or kubectl auth can-i.

12:00–13:00🥪 Lunch Break

You'll harden Kubernetes nodes using kernel security modules: You'll create AppArmor profiles for containers, configure seccomp policies for syscall filtering, and disable insecure kernel features. You'll learn to protect node metadata (cloud provider metadata APIs) with network policies to prevent credential leaks from containers. Minimalist OS distributions like Flatcar Container Linux or Bottlerocket additionally reduce the attack surface.

16:00–16:30💭 Questions & Answers

Day 2: Pod security, secrets management, and network security

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

You'll implement Pod Security Standards (PSS) in Kubernetes: You'll configure the PodSecurity admission controller with privileged, baseline, and restricted modes and enforce policies per namespace. You'll learn two container isolation technologies: gVisor uses a userspace kernel for syscall filtering and drastically reduces the attack surface. Kata Containers goes further by isolating each container in its own lightweight VM. You'll compare both approaches regarding performance overhead and security benefits.

gvisorgVisorkatacontainerKata Containers

You'll secure secrets on two levels: etcd encryption at rest (EncryptionConfiguration with AES-CBC or AES-GCM) protects secrets in cluster storage. You'll configure Pod Security Context for hardening: runAsNonRoot, readOnlyRootFilesystem, allowPrivilegeEscalation: false, and drop capabilities (CAP_NET_RAW, CAP_SYS_ADMIN). You'll learn about external secrets management solutions (External Secrets Operator, Sealed Secrets) and understand when they're more appropriate than native Kubernetes Secrets.

12:00–13:00🥪 Lunch Break

You'll implement default deny network policies (all pods are isolated by default) and create whitelist-based ingress/egress rules. You'll learn micro-segmentation with cross-namespace policies and label selectors. You'll configure pod-to-pod encryption with Cilium (WireGuard or IPSec) and understand the difference between CNI-based policies (Calico, Cilium) and Kubernetes-native NetworkPolicy objects. Exam-relevant: egress filtering for external APIs and DNS policies.

ciliumCilium

You'll learn how to expose applications via TLS-secured routes: With Ingress Controllers (NGINX, Traefik) and the modern Gateway API. You'll configure automatic certificate management with cert-manager (Let's Encrypt integration) and enforce HTTPS-only policies. This keeps communication with your applications confidential and protected from man-in-the-middle attacks.

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

Day 3: Supply chain security and runtime monitoring

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

You'll secure the container supply chain with modern tools: You'll sign images with Cosign, verify signatures, and generate Software Bill of Materials (SBOM) with Syft. You'll configure the Kyverno admission controller to allow only signed images in the cluster. You'll learn keyless signing with Sigstore (OIDC-based, no manual key management) and understand how SLSA levels ensure build integrity. This is directly exam-relevant (Supply Chain Security: 20% exam weighting).

kyvernoKyverno

You'll scan container images for CVEs (Common Vulnerabilities and Exposures) with Trivy: You'll integrate Trivy into CI/CD pipelines, filter by severity levels (Critical, High), and block vulnerable images. You'll validate Kubernetes manifests with Kubesec (detects dangerous SecurityContext settings) and KubeLinter (best practice checks for production deployments). You'll learn to use SBOM data (Software Bill of Materials) from Trivy scans to track known dependencies.

trivyTrivy
12:00–13:00🥪 Lunch Break

At the API server, authentication, authorization, admission, and audit are separate stages; audit records but never makes decisions. With a prepared identity provider and webhook, you configure both paths, send accepted and rejected requests, then use responses and audit entries to identify the responsible stage. You test NodeRestriction separately with a kubelet identity whose attempt to modify another Node or its Pods is rejected.

You'll monitor runtime behavior with Falco: You'll create Falco rules for suspicious activities: file integrity monitoring (unexpected changes in system directories), syscall monitoring (unexpected shell processes in containers), and network activity (connections to unknown IPs). You'll configure alerting (Slack, PagerDuty) and automated response (automatically isolate pods on critical events). You'll learn eBPF-based runtime security with Tetragon and understand the difference from log-based monitoring.

If you want to explore Falco beyond the exam blueprint, Introduction to Falco covers installation, testable rules, exceptions, alert routing, and operational diagnostics.

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

Day 4: Audit logs, forensics, and CKS exam preparation

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

You'll configure Kubernetes audit logs with audit policies: You'll define which events to log (RequestReceived, ResponseStarted, ResponseComplete) and filter for critical operations (secret access, RBAC changes, exec/attach on pods). You'll learn audit levels (None, Metadata, Request, RequestResponse) and understand trade-offs (verbosity vs. performance). You'll integrate audit logs into SIEM systems (Elastic Stack, Splunk) and create alerts for suspicious patterns (e.g., repeated Unauthorized errors).

You'll learn incident response playbooks for Kubernetes: When pods are suspicious, you'll perform isolation (set network policy to deny-all, change pod labels), extract forensic data (logs, volume snapshots, memory dumps), and analyze audit logs for initial access vectors. You'll practice live response: debugging running containers, analyzing processes, and checking network connections. You'll understand when pods should be terminated vs. isolated (forensics vs. containment).

12:00–13:00🥪 Lunch Break

You'll investigate compromised clusters forensically: You'll reconstruct attack chains from audit logs (Initial Access → Privilege Escalation → Lateral Movement → Data Exfiltration), analyze pod anomalies (unexpected processes, network connections, file modifications), and identify persistence mechanisms (CronJobs, DaemonSets with backdoors). You'll create forensic snapshots (etcd backups, PersistentVolume snapshots) without impacting the cluster. You'll learn post-incident analysis with timelines and Indicators of Compromise (IOCs).

Reinforce your newly acquired knowledge, receive practical time management tips for the exam environment, and learn how to avoid common pitfalls. You'll enter the CKS exam structured and well-prepared.

Wrap up any final questions, provide feedback, and discover the opportunities that await you once you've passed the exam. This course equips you to secure Kubernetes sustainably and professionally.

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.

"The CKS extends your Kubernetes knowledge with the security-relevant aspects and is therefore the perfect follow-up to the CKA. For anyone working in the Kubernetes security space, it is definitely worth it. Very strong technical expertise, very friendly, and the content was conveyed interactively and vividly. The learning environment was very well designed."

Default avatar picture of DevNinjas
Fabian Maas
@STACKIT GmbH

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

"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

"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

"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

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

"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

"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

"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
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
Foundation
Preparation for the Certified Kubernetes Administrator (CKA) Exam Workshop
Intermediate

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.
4 Days€2,220.00
Tooling
Introduction to Kubernetes Helm Workshop
Intermediate

Introduction to Kubernetes Helm

Develop production-ready Helm charts in 3 days: From installation through OCI registry publishing to GitOps integration. You create custom charts, test with helm-unittest, and deploy multi-environment setups. All exercises run on dedicated Kubernetes clusters in the DevNinjas Dojo.
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

Yes, CKA is mandatory: The CNCF requires a valid CKA certification as a prerequisite for the CKS exam. You cannot register for the CKS exam without CKA.

Why this requirement makes sense: CKS builds on CKA knowledge. You should already be confident working with kubeadm, etcd backups, RBAC, kubelet, and CNI plugins. If you don't master these topics, you will fail the CKS exam, as security scenarios assume these foundations.

Don't have CKA yet? We recommend our CKA Workshop (DW6), which prepares you specifically for the CKA exam. Typical learning path: CKA (Cluster Administration) → CKS (Security) → Optional: DW10 (Observability).

The CKS exam is challenging (passing score: 67%) and is considered harder than CKA. You have 2 hours for 15-20 hands-on tasks in a live Kubernetes environment.

The Biggest Challenge:

  • Time pressure (approx. 6-8 minutes per task)
  • Deep security understanding required (writing AppArmor profiles, debugging NetworkPolicies, analyzing compromised clusters)
  • Complex multi-step scenarios (sign image → enforce Kyverno policy → test deployment)

After This Workshop:

  • You know all 6 exam domains with correct weighting (Supply Chain Security 20%, Microservice Vulnerabilities 20%, Monitoring/Runtime 20%)
  • You practice exam-relevant scenarios (Cosign image signing, Falco rules, forensic analysis)
  • The CKS 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 with Killer.sh) typically pass on their first or second attempt.

Yes, especially for DevSecOps and cloud security roles. The demand for Kubernetes security experts clearly exceeds supply.

Salary & Career:

  • Kubernetes security specialists are among the best-paid DevOps profiles; actual salaries depend heavily on region, seniority, and industry
  • The certification signals deep security expertise and is often a requirement for security architect roles

Typical career paths with CKS:

  • Platform Security Engineer at cloud-native companies
  • DevSecOps Lead (CI/CD security integration)
  • Kubernetes Security Consultant
  • Cloud Security Architect (multi-cloud environments)

Particularly valuable in regulated industries (finance, healthcare, government) where Kubernetes security is compliance-critical.

The workshop is highly hands-on: You work in your own cloud-based Kubernetes environment (AWS/Azure/GCP) and implement all security measures yourself.

Typical daily schedule: 30% theory (conceptual introduction, exam context), 70% hands-on labs (you configure AppArmor profiles, sign images with Cosign, write Falco rules, debug compromised clusters).

You leave the course with:

  • Ready-made configurations (Kyverno policies, NetworkPolicies, PodSecurityStandards)
  • Working security setups (image signing pipeline, runtime monitoring with Falco)
  • Troubleshooting checklists for common security issues

Each session ends with discussion of your questions and challenges from your real projects.

Yes, hands-on with live demos: Supply Chain Security is one of six exam domains (20% weighting) and is covered in corresponding depth.

You'll learn:

  • Cosign: Sign images (cosign sign), verify signatures (cosign verify), keyless signing with Sigstore (OIDC-based)
  • Syft: Generate SBOMs (syft image:tag), scan vulnerabilities, SBOM formats (CycloneDX, SPDX)
  • Kyverno: Configure admission controller, write verifyImages policies, allow only signed images

Hands-on Lab: You'll build a complete supply chain pipeline: sign container image in CI/CD → generate SBOM → enforce Kyverno policy → test deployment. This is directly exam-relevant.

We update the content every 3 months to keep pace with Kubernetes security developments:

Currently in the workshop (as of 2026):

  • Pod Security Standards (PSS, stable since K8s v1.25, replaces deprecated PodSecurityPolicies)
  • AppArmor (stable since K8s v1.31, native field integration in securityContext)
  • Cilium Encryption with WireGuard (a widely used approach for pod-to-pod encryption)
  • Sigstore/Cosign keyless signing (OIDC-based, no manual key management)
  • SLSA Framework for build integrity

We also integrate current CVEs and security advisories from the CNCF. You always learn the current state of practice, not outdated approaches.

No, you purchase the exam voucher separately from the Linux Foundation. The voucher includes two Killer.sh simulator sessions of 36 hours each, which you should definitely use: the simulation is deliberately harder than the real exam and reliably shows you where you stand.

Our recommendation: complete the workshop, practice on your own for one to two weeks, then take Killer.sh session 1, work on your weak spots, take session 2, and only then book the exam.

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

14. – 17. 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

14. – 17. 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

28. September – 01. Oktober 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