Kubernetes Series : Network Policies

Introduction In this new article we discuss about Network Policies. What is a Network Policy ? A network policy is a specification of how groups of pods are allowed to communicate with each other and other network endpoints. NetworkPolicy resources use labels to select pods and define rules which specify what traffic is allowed to the selected pods. How …

Kubernetes Series : Network Policies Read More »

Kubernetes Series : K8S Architecture and Lab Environment

Introduction We have seen together what Kubernetes was : an open source container orchestration system. Today, we will see how Kubernetes is built, how it works and 2 ways to deploy easily a lab environment Kubernetes Architecture In this first part, let’s see the basic concepts and components in a Kubernetes infrastructure. Nodes Nodes, or …

Kubernetes Series : K8S Architecture and Lab Environment Read More »

Kubernetes Series : Namespaces and Imperative commands

Introduction In this new article we will discuss about Namespaces and Imperative commands ! 🙂 What is a Namespace and how to create them ? Kubernetes supports multiple virtual clusters backed by the same physical cluster. These virtual clusters are called namespaces. Namespaces are intended for use in environments with many users spread across multiple teams, or …

Kubernetes Series : Namespaces and Imperative commands Read More »

Kubernetes Series : K8S Overview

Quick reminder on Containers Before starting this new series of articles on Kubernetes, it is important to be sure that basics concepts like containers and orchestration are understood. Containers are designed to benefit for both developers and system administrators. Indeed, developers need to focus on writing code without worrying about the system that it will ultimately be running …

Kubernetes Series : K8S Overview Read More »