Kubernetes Features

Automatic binpacking: This is where Kubernetes helps in automatically placing containers based on their spec (resource requirements, limits, and other constraints), without compromising on availability.
• Service discovery and load balancing: In simple words, service discovery is the process of figuring out how to connect to a service.
• Self-healing: Restarts the containers that fail, replaces, and reschedules containers when nodes die.
• Automated rollouts and rollbacks: With this feature, Kubernetes does progressively roll out changes, and it ensures it doesn’t kill all your instances at the same time.
• Secrets and configuration management: Kubernetes has a built-in mechanism of storing configuration values that you would prefer to keep private. Sensitive information such as user name, passwords with encryption, and other credentials can be kept confidentially.
• Storage orchestration: Automatically mount the storage system of your choice, whether from local storage, a public cloud provider such as GCP or AWS, or a network storage system such as NFS, iSCSI, Gluster, Ceph, Cinder, or Flocker.

Leave a Reply

Your email address will not be published. Required fields are marked *