Kubernetes Handbook
  • Introduction
  • Prerequisites
    • What is Containerization
    • What is Docker
    • Difference between Docker and VM
  • Features of Kubernetes
    • What is Kubernetes
    • Features of Kubernetes - 1
    • Features of Kubernetes - 2
    • Which Tool to Use for Orchestration
  • Architecture
    • Master Node
    • etcd and kubectl
    • Worker Nodes
  • Pods and Nodes
    • Nodes
    • Pods
  • Controllers
    • Benefits of Controllers
    • Kinds of Controllers
  • Minikube
    • What is Minikube
  • Installation and Running (Mac OS)
    • Installation
    • Running Hello World Application
  • Labels Namespaces and Selectors
    • Labels
    • Namespaces
    • Selectors
  • Health Checks Rollouts and Rollbacks
    • Health Checks
    • Rollouts and Rollbacks
  • Config Maps and Secrets
    • Config Maps
    • Secrets
  • Running Jobs
    • How to Run Jobs
  • Dashboard and Debugging
    • Kubernetes Dashboard
    • Debugging
Powered by GitBook
On this page
  • Scalability and Availability
  • Multi-host container scheduling: kube-scheduler

Was this helpful?

  1. Features of Kubernetes

Features of Kubernetes - 1

Scalability and Availability

Kubernetes can scale effortlessly and is available throughout multi-deployments due to the following points.

  • Kube - master can be deployed in a highly available configuration.

  • Multi-region deployments available

  • 100 pods per node

  • Supports 5000 node clusters

  • Pods can be horizontally scaled via API

Multi-host container scheduling: kube-scheduler

  • Assigns pods to nodes at runtime

  • Checks resources, QoS (Quality of Service), policies, user specifications before runtime

PreviousWhat is KubernetesNextFeatures of Kubernetes - 2

Last updated 3 years ago

Was this helpful?