Tag: Kubernetes

  • Kubernetes basic Objects

    In this article, we will learn about the basic objects of Kubernetes in detail with their respective YAML files. POD Replication Controller Replica Set Daemon Set Deployment Service Volume Job POD A pod is a basic unit of K8S. Pod always run on node. In K8S cluster Pod represents running process. Inside the pod, you…

  • Services and Blue-Green Deployment Strategy

    In this article, we’ll briefly focus on services and blue-green deployment strategy. What is a service in Kubernetes? A service is responsible for making our pods discoverable inside the network or exposing them to the internet. A service identifies pods by its LabelSelector. What are the types of services? Cluster IP Node Port Load Balancer…

  • Difference Between K8S vs Azure Kubernetes Service (AKS)

    Kubernetes aka K8s is container orchestration tool, which helps us to control our containers in the clusters. It is open source platform for managing containerized applications. Born in GOOGLE, written in GO/Golang. Donated to CNCF in 2014. Kubernetes v1.0 was released on July 21 2015. Current stable version in 1.14 and latest is 1.17. K8S…