Blog

Kubernetes

Freigabe von Anwendungen mit Diensten

In this guide, we will discuss how to expose an application to the outside world via Services. We will cover five different types of Services and their usage. Basic knowledge of Pod and Deployment is suggested to follow the hands-on practice on this part of the series. Services in Kubernetes A …

Kubernetes

Rego in einer Kurzfassung

In earlier articles from this series, we have demonstrated how to use Open Policy Agent (OPA) with Kubermatic Kubernetes Platform. Open Policy Agent uses its own native language, Rego, to define queries. This tutorial presents an overview of the main features of Rego which will allow you to …

Kubernetes

Kubernetes-Betreiber: Komplexe Anwendungslebenszyklen automatisieren

What Is a Kubernetes Operator? Kubernetes Operators are a way to package, deploy, and manage Kubernetes applications. This includes Kubernetes applications deployed on Kubernetes and those that are managed using the Kubernetes API or kubectl. A Kubernetes Operator is a controller specific to an …

Kubernetes

Einführung in Verteilungsstrategien

The last part of this Kubernetes 101 series focused on ReplicaSets and Deployments and why it is better to use Deployments rather than Pods to manage your Kubernetes applications. In this part of the series, we will walk you through different types of Deployment strategies to give you the insight of …

Kubernetes

Bewährte Praktiken für Kubernetes-Sicherheit

With recent platforms like Kubernetes and containers, CVE (Common Vulnerabilities and Exposures) can be found frequently, even in the most common utilities. They can pose a range of challenges for those in charge of security. There have been cases in the past where a critical issue let an attacker …

Kubernetes

Warum die Pandemie eine Zwangsfunktion für Cloud Native ist

It’s been breaking news over the past few weeks: For the second quarter of 2020, Zoom reported an incredible 355% revenue growth compared to the previous year. If there was any more proof needed that the pandemic has been fueling digital transformation faster than ever, this it checked off. I …

Kubernetes

Einführung in den Open Policy Agent

What Is Open Policy Agent? Open Policy Agent is a project which allows you to implement fine-grained access control. It is written in Go and is part of the Cloud Native Computing Foundation as an incubating project. Its source code is available publicly under the Apache License 2.0. Why Use OPA? …

Kubernetes

Einführung in Pods

What is a Pod? A pod is the smallest object that can be created in Kubernetes. It consists of one or more containers that are tightly coupled and is the central object type on top of which others build their functionalities. Containers in a pod are created, managed, and destroyed together. …