Posts

Showing posts from June, 2019

Points to keep in mind while starting you migration journey towards Kubernetes

Image
Things to bear in mind while migrating to Kubernetes :  Recently I have been reading book "Cloud Native DevOps with Kubernetes" and found some interesting facts about the migration towards container and Kubernetes. Thought of sharing those with you. Below are the point we should know and consider while moving towards cloud native or DevOps culture using kubernetes. • Kubernetes clusters are made up of master nodes, which run the control plane, and worker nodes, which run your workloads.  • Production clusters must be highly available, meaning that the failure of a master node won’t lose data or affect the operation of the cluster.  • It’s a long way from a simple demo cluster to one that’s ready for critical production workloads. High availability, security, and node management are just some of the issues involved.  • Managing your own clusters requires a significant investment of time, effort, and expertise. Even then, you can still get it wrong....