Kubernetes – Networking

Kubernetes mangages many pods and containers. The management of networking in a cluster is not a simple matter. Kubernetes is doing the job using the CNI (Container Network Interface) plugins. There are many CNI providers, such as Flannel, Calico, Canal, and Weave Net.

Continue reading “Kubernetes – Networking”

Docker – Working with Images

In this post, let’s play with images through a couple of tutorials.

  • [Tutorial 1] Create a Docker image (Ubuntu 20.04 + Python3) with a “hello-world” application written in Python.
  • [Tutorial 2] Create an nginx image and connect the host port to the nginx port in the container
Continue reading “Docker – Working with Images”