Category: Microservices

  • Kubernetes Cluster Setup

    Spin 3 ubuntu servers Step 1: Install Docker The first step in setting up a new cluster is to install a container runtime such as Docker. In this lesson, we will be installing Docker on our three servers in preparation for standing up a Kubernetes cluster. After completing this lesson, you should have three playground

    Read article →

  • Kubernetes Object Model

    A Pod is the smallest and simplest Kubernetes object. It is the unit of deployment in Kubernetes, which represents a single instance of the application. A Pod is a logical collection of one or more containers, which: Are scheduled together on the same host Share the same network namespace Mount the same external storage (volumes). Ephemeral in nature Cannot

    Read article →

  • Kubernetes – Features

    Features: Some other fully supported Kubernetes features are: Kubernetes offers a very rich set of features for container orchestration. Some of its fully supported features are: Automatic binpacking Kubernetes automatically schedules the containers based on resource usage and constraints, without sacrificing the availability. Self-healing Kubernetes automatically replaces and reschedules the containers from failed nodes. It

    Read article →