Kubernetes
Microservices and deployment of containers
With Kubernetes, you can automatically deploy, manage and scale container applications. The open source platform orchestrates your containers efficiently, ensures reliability and simplifies the operation of distributed systems.
From the idea to a running Kubernetes cluster
You don’t have to build Kubernetes alone. We accompany you step by step – and stay by your side afterwards.
Analysis & concept
Structure & integration
Commissioning & containerization
Support & Operation
Kubernetes features
Container applications that have themselves under control: Kubernetes automatically provides your workloads, scales them with the load and keeps them running – even if something fails.
Shaping IT together
We help you to strategically plan, technically implement and sustainably operate modern IT and monitoring solutions. We combine consulting, implementation and support to create a tailor-made service that is geared to your requirements. Our aim is to make complex systems transparent, stable and efficient to use.
Kubernetes Training
Learn the basics of container orchestration with Kubernetes
The Kubernetes training course offers a practical introduction and enables you to gain initial experience from a developer and operations perspective. You will acquire practical knowledge through numerous practical exercises.
Managed Kubernetes
From start to deploy in just a few minutes
Our Managed Kubernetes service allows you to easily orchestrate and scale your containerized applications. We take care of the operation of the Kubernetes clusters so that you can concentrate fully on the development and provision of your workloads – be it for applications, CI/CD pipelines or data processing. This means you can use modern IT processes and count on the support of our MyEngineers if required.
Know-how
More know-how on the topic of Kubernetes
Installing Icinga with Icinga DB on Ubuntu 26.04
Last updated: 11.06.2026 Icinga mit Icinga DB auf Ubuntu 26.04 LTS installieren: diese Anleitung führt dich Schritt für Schritt durch die komplette Grundinstallation. From the…
Ansible basics
Last updated: 28.05.2026 Imagine you have to install the same packages, start services and adjust configurations on 10 servers. Manually via SSH, with copy-paste commands…
Install Icinga Director on RHEL 10.1
Last updated: 21.05.2026 You no longer want to manage your Icinga configuration exclusively via configuration files? The Icinga Director makes exactly this possible: As a…
Install Icingaweb2 and Icinga DB Web on RHEL 10.1
Last updated: 07.05.2026 For many users, a graphical user interface is indispensable. With Icinga Web, Icinga2 provides the graphical user interface via which checks, hosts…
Install Icinga with Icinga DB on RHEL 10.1
Last updated: 30.04.2026 This guide will walk you through the complete installation of Icinga 2 with Icinga DB on Red Hat Enterprise Linux 10.1 –…
Integrate Icinga and Prometheus
Last updated: 23.04.2026 Icinga and Prometheus are both excellent monitoring solutions. However, the focus of the tools is different. When it comes to monitoring real-time…
Install Icinga Director on Ubuntu 24.04
Last updated: 16.04.2026 You no longer want to manage your Icinga configuration exclusively via configuration files? The Icinga Director makes exactly that possible: As a…
Install Icingaweb2 & Icinga DB Web on Ubuntu 24.04
Last updated: 09.04.2026 Many users not only want to manage their monitoring via the console, but also evaluate it graphically. With Icinga2 and Icinga Web,…
Install Icinga with Icinga DB on Ubuntu 24.04
Last updated: 02.04.2026 You want to install Icinga on Ubuntu 24.04 LTS and work directly with Icinga DB? Good decision! The new architecture ensures that…
Is Icinga free of charge?
Last updated: 05.03.2026 This blog post explains whether Icinga is free. As I sit here and start writing this blog post, I still can’t believe…
Questions & Answers
The most frequently asked questions about Kubernetes
What is Kubernetes simply explained?
Kubernetes is an open source system for automating the provision, scaling and management of containerized applications. It helps to efficiently distribute applications in containers on different servers and monitors their status to automatically rectify failures. As a result, Kubernetes makes it easier to manage complex applications in the cloud or on local servers by optimizing the use of resources and simplifying operations.
What is the difference between Docker and Kubernetes?
Docker is a platform for creating, deploying and running containers that allows you to run applications in isolated environments. Kubernetes, on the other hand, is an orchestration platform that helps you to automatically manage and scale many containers and ensure their availability. While Docker focuses on containerizing applications, Kubernetes manages the entire infrastructure on which these containers run.
Which containers does Kubernetes support?
Docker is a platform that makes it possible to isolate and run applications in containers, making them more portable and easier to manage. Kubernetes, on the other hand, is an orchestration tool that automatically manages, scales and deploys many containers to efficiently run applications on a large scale. While Docker is responsible for creating and executing individual containers, Kubernetes coordinates and manages containers in distributed systems.
What is a Kubernetes cluster?
A Kubernetes cluster consists of a group of computers that work together to operate and manage containerized applications. It consists of a master node, which is responsible for control and administration, and several worker nodes, which execute the containers. The cluster makes it possible to scale applications across different nodes, distribute loads and ensure reliability.
Why is Kubernetes called K8s?
Kubernetes is often abbreviated as "K8s", as there are eight letters between the first and last letters "K" and "s". This abbreviation is a practical spelling to simplify the longer name. It follows a common pattern in IT, where letters are replaced by numbers, as in "i18n" for "Internationalization".
What is Kubernetes Helm?
Kubernetes Helm is a package manager for Kubernetes that simplifies the management of applications and their dependencies within a cluster. Helm can be used to install, update and version applications as charts, i.e. predefined packages of Kubernetes resources. This facilitates the deployment and management of complex applications in Kubernetes by providing standardized and reusable configurations.
What is a pod in Kubernetes?
A pod is the smallest and simplest unit in Kubernetes, which comprises one or more containers that run together on one node. Containers within a pod share network and storage volumes so that they can work together efficiently. Pods enable the management and scaling of container applications by using them as a logical unit for execution, management and orchestration.