• 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 Red Hat OpenShift

After three days, you will manage applications on Red Hat OpenShift confidently and independently. From the Web Console through Source-to-Image builds and Routes to Operators and Security Context Constraints. You work hands-on on your own OpenShift cluster in our cloud environment.

Share via email
  • Workshop levelSome practical experience recommended
  • Satisfied participants2340+
  • Days3
  • LanguageGerman & English
  • Workshop codeDW13

Workshop Details

What makes this workshop stand out

🎯

What you will learn and take away

After three days of OpenShift training, you will work confidently with Red Hat's enterprise Kubernetes platform. Here is what you take away:

  • Deploy and manage your own applications: via Web Console, oc CLI, and YAML manifests, with automated builds using Source-to-Image
  • Configure security correctly from the start: RBAC, Security Context Constraints, and Resource Quotas protect your cluster from misconfigurations
  • Use Operators and Helm Charts productively: install software from the OperatorHub and manage your own packages with Helm

All exercises run on your own OpenShift cluster in our cloud environment. No local setup, no licensing costs for you.

Already know Rancher? Our Introduction to Rancher workshop shows the alternative Kubernetes management platform.

💼

Why the investment pays off

If your team wants to run Kubernetes in the enterprise but the effort for security, CI/CD, and compliance is too much to handle manually, OpenShift solves exactly this problem. This training prepares your team:

  • Shorten development cycles: Source-to-Image and integrated build pipelines move code into containers faster without setting up external CI/CD tools
  • Meet compliance requirements: Security Context Constraints and RBAC enforce corporate policies at the cluster level, not just as documentation
  • Reduce operational overhead: Operators automate lifecycle management of databases, monitoring, and other services instead of manual maintenance

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

📋

Prerequisites

Required:

  • Basic Kubernetes knowledge: Pods, Deployments, Services, and Namespaces should be familiar to you
  • Experience with the Linux command line and a text editor
  • Basic understanding of containers (Docker or Podman)

Not required:

  • Experience with OpenShift or Red Hat products
  • Knowledge of Helm or Operators (covered from scratch)

Our Kubernetes fundamentals training 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 OpenShift, explore the cluster and deploy first apps

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

Working with Kubernetes means dealing with challenges like configuring Ingress, setting up CI/CD yourself, and managing security policies manually. This module shows which components OpenShift adds on top: an integrated image registry, Routes instead of Ingress, Source-to-Image (S2I) for automated builds, and a strict security model with SCCs. You will understand when OpenShift makes sense compared to a self-managed Kubernetes cluster.

openshiftOpenShiftkubernetesKubernetes

OpenShift provides two ways to interact with the cluster: the Web Console with its Developer and Administrator perspectives, and the command line via oc. You will switch between both views, create your first project, and compare how oc differs from kubectl. By the end, you navigate confidently through dashboards, logs, and events, both graphically and in the terminal.

12:00–13:00🥪 Lunch Break

Projects are OpenShift's extension of Kubernetes Namespaces: they come with automatic network isolation and default policies. You will create Projects, set up local users, and assign roles like view, edit, and admin. You experience first-hand how permissions affect access in both the Console and CLI.

Time to get practical: you deploy a container application using three approaches. First via the Web Console catalog, then with oc new-app on the command line, and finally with a Kubernetes manifest (YAML). You watch the rollout in real time and inspect pod status, logs, and events. Afterward, you know which approach fits which situation.

In vanilla Kubernetes, you need an Ingress Controller plus configuration. OpenShift Routes replace that with a single command: oc expose. You create a Route, configure TLS termination (Edge, Passthrough, Re-encrypt) and see how the built-in HAProxy Router distributes traffic. Comparing Routes to Ingress shows why Routes often get you to a working result faster in practice.

16:00–16:30💭 Questions & Answers

Day 2: Automate builds, manage deployments and handle configuration

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

How does source code become a running container? OpenShift offers three approaches: Source-to-Image (S2I) builds directly from a Git repository without writing a Dockerfile. Docker Build uses an existing Dockerfile. And Pipelines (Tekton-based) enable multi-stage CI/CD workflows. You try S2I and Docker Build hands-on and learn when each strategy is the right choice.

ImageStreams have no equivalent in vanilla Kubernetes. They abstract container images and enable automatic rebuilds when a base image changes. You create an ImageStream, link it to a BuildConfig, and configure triggers: on code changes (Webhook), image updates, or configuration changes. The result is an automated build pipeline without any external CI tool.

12:00–13:00🥪 Lunch Break

OpenShift relied on its own DeploymentConfigs for years, but since version 4.14 they are deprecated. In this module, you work with standard Kubernetes Deployments and configure rollout strategies: RollingUpdate for zero-downtime updates and Recreate for scenarios requiring exclusive database access. If you need to migrate existing DeploymentConfigs, you learn the key differences and the migration path.

Configuration does not belong inside a container image. You create ConfigMaps for application settings and Secrets for credentials, mount them as files or environment variables in Pods, and see how the OpenShift Web Console simplifies management. Hands-on exercise: an application whose database connection is fully controlled via ConfigMaps and Secrets.

Containers are ephemeral, but databases need persistent storage. You create PersistentVolumeClaims, attach them to Pods, and verify that data survives a Pod restart. Then you configure Dynamic Provisioning with StorageClasses so OpenShift creates volumes automatically. By the end, you understand the difference between block, file, and object storage in the OpenShift context.

16:00–16:30💭 Questions & Answers

Day 3: Enforce security, use Operators and configure for production readiness

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

OpenShift is more restrictive than vanilla Kubernetes: containers run without root privileges by default. You create Roles and ClusterRoles, bind them to users and ServiceAccounts, and test what happens when a Pod requests more privileges than its assigned SCC allows. This module explains why some container images fail to start on OpenShift and how to selectively loosen or tighten SCCs.

In multi-tenant environments, no team should consume the entire cluster. You configure ResourceQuotas per Project, set LimitRanges as guardrails for CPU and memory, and set up a Horizontal Pod Autoscaler (HPA) that scales Pods automatically under load. Then you watch live how OpenShift responds to a load test.

12:00–13:00🥪 Lunch Break

Operators are the backbone of the OpenShift ecosystem: they automate installation, updates, and lifecycle management of complex software. You install an Operator from the OperatorHub (e.g. a database), observe how it creates and manages Custom Resources, and understand the maturity levels (Basic Install through Auto Pilot). Afterward, you know when an Operator is the better choice over a Helm Chart.

In addition to Operators, OpenShift supports Helm Charts and its own Templates. You install an application via Helm through the Web Console, customize values, and compare the workflow with the Operator approach. You learn about Templates as an older OpenShift concept for context, but the focus is on Helm as the standard for reusable Kubernetes packages. You can go deeper in our Helm training.

helmHelm

OpenShift ships with Prometheus and Grafana as a built-in monitoring stack. You open the pre-installed dashboards, explore cluster and pod metrics, and create a first alert rule. To wrap up, we look ahead at advanced topics: GitOps with ArgoCD, Service Mesh, Advanced Cluster Management, and the path to EX280 certification.

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 instructor is very competent and was able to answer all questions satisfactorily even outside the presentation. It was a very pleasant workshop with a good learning pace. I learned a lot and look forward to applying and expanding my acquired knowledge in everyday work, as well as privately."

Default avatar picture of DevNinjas
Schmucker
@RODIAS GmbH

"The training exceeded my expectations by far. It was excellently structured, and the trainer's expertise was evident from the very first moment. The topics were presented vividly and with practical examples, and the exercises were pleasantly challenging, exactly right for a course like this. Through targeted questions, the trainer drew me so deeply into the subject that I absolutely wanted to keep working after the session ended. The teaching was outstanding too: topics were explained clearly and the trainer always addressed follow-up questions. I can recommend DevNinjas one hundred percent."

Default avatar picture of DevNinjas
Patrick J.

"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

"All expectations met. Good technical expertise."

Default avatar picture of DevNinjas
Manuel Köhn
@Mercedes-Benz Tech Innovation

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

"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

"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

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

"The CKAD content is extensive, and the hands-on exercises are helpful and necessary to really learn it. This course struck a good balance between enough practice and sufficient depth. The understanding conveyed over the three days is definitely enough to work through the remaining CKAD topics on your own, because the concepts are taught clearly. The learning environment worked smoothly and reliably."

Default avatar picture of DevNinjas
Peter Menze

Continue Learning

Related Workshops for You

Foundation
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
Alternative
Introduction to Rancher Workshop
Intermediate

Introduction to Rancher

Master multi-cluster Kubernetes management with Rancher in three days. From Rancher Manager installation through RKE2, Fleet GitOps, and Longhorn storage to backup and monitoring. You work live online and hands-on with your own clusters in our cloud environment (DevNinjas Dojo).
3 Days€1,665.00
Next Step
Kubernetes Advanced Workshop
Intermediate

Kubernetes Advanced

Two-day Kubernetes Advanced Training for production-ready deployments. You'll learn StatefulSets for databases, RBAC for security, HPA and VPA for auto-scaling, and Prometheus and Grafana for monitoring. Perfect after the introductory course or with comparable Kubernetes experience. Live online in groups of up to 8 participants.
2 Days€1,110.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, with solid Kubernetes fundamentals you are well prepared. You should be familiar with Pods, Deployments, Services, and Namespaces, and be able to use the kubectl command line. Everything else builds on that.

In the workshop, we focus on the OpenShift-specific concept deltas that vanilla Kubernetes lacks: Routes instead of Ingress for external access, Security Context Constraints (SCCs) for a stricter pod security model, and Projects as extended Namespaces with automatic isolation. Once you understand these differences, moving from Kubernetes to OpenShift is quick.

If you still need the Kubernetes foundation, our Kubernetes fundamentals training provides the ideal preparation.

OpenShift is built on Kubernetes but adds components that you would need to set up yourself with vanilla Kubernetes:

Kubernetes provides container orchestration: Pods, Deployments, Services, and scheduling. For CI/CD, Ingress, image registry, and security policies, you need additional tools.

OpenShift includes all of that: an integrated container registry, Routes instead of Ingress, Source-to-Image (S2I) for automated builds, Security Context Constraints for strict pod security, and the OperatorHub for lifecycle management. On top of that, a web console with Developer and Administrator perspectives.

In short: Kubernetes is the engine, OpenShift is the complete vehicle.

Both platforms simplify Kubernetes operations but take different approaches:

OpenShift is a complete Kubernetes distribution from Red Hat. It replaces vanilla Kubernetes and comes with its own build tools (S2I), a strict security model (SCCs), and the OperatorHub. Ideal for organizations looking for an integrated platform with enterprise support and compliance features.

Rancher is a multi-cluster manager that sits on top of existing Kubernetes clusters. It works with any CNCF-compliant distribution and excels at managing multiple clusters from a single interface. Ideal for teams that want flexibility in choosing their cluster distribution.

We offer both workshops: this OpenShift workshop and our Introduction to Rancher workshop.

Approximately 60% of the time is hands-on work on your own OpenShift cluster. Each participant gets a dedicated environment in our cloud (no shared cluster, no local installation). Theory and practice alternate in every module: first understand the concept, then apply it directly.

Live training with an instructor, not pre-recorded videos. With a maximum of 8 participants, there is enough time for individual questions.

OpenShift requires Red Hat subscriptions, billed per core-pair (4 vCPUs each) on worker nodes. The exact cost depends on cluster size, support level (Standard vs. Premium), and contract length. Control plane nodes are included in the subscription.

Alternatives for getting started: OpenShift Local (free, single-node cluster for development) and the Developer Sandbox (30 days free on Red Hat's cloud). Managed variants like ROSA (AWS) or ARO (Azure) charge usage-based from approximately $0.17/hour per 4 vCPUs.

In the workshop, you work on your own cluster in our cloud environment. No licensing costs for you.

This workshop is not a direct exam preparation, but covers many topics tested in the EX280 (Red Hat Certified OpenShift Administrator): cluster management, application deployment, networking, storage, security, and troubleshooting.

Additionally recommended for the exam:

  • Red Hat's official course DO280 (OpenShift Administration II) for multi-tenancy and advanced security
  • Practice on a production-like multi-node cluster
  • Timed exercises in the exam format

Our workshop gives you a solid foundation. For the certification, you will need practical experience and targeted exam preparation afterward.

Our trainings usually take place from 9:00 to 16:00, both on-site and for public remote trainings.

For corporate trainings, other time models are flexible and can be worked out together.

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 runOnly 2 spots left!

10. – 12. August 2026

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

Online🇩🇪German

1.665,00 €

per person · plus 19% VAT

Guaranteed to run

10. – 12. August 2026

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

Online🇬🇧English

1.665,00 €

per person · plus 19% VAT

Guaranteed to runFew spots left

24. – 26. August 2026

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

Online🇩🇪German

1.665,00 €

per person · plus 19% VAT

Guaranteed to runPopular date

07. – 09. September 2026

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

Online🇩🇪German

1.665,00 €

per person · plus 19% VAT

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
    Book date
    Book date
    Book date
    Book date