Breaking News: Grepper is joining You.com. Read the official announcement!
Check it out

Kubernetes Basic Concepts

Sumit Rawal answered on May 14, 2023 Popularity 5/10 Helpfulness 1/10

Contents


More Related Answers

  • Kubernetes
  • Benefits of Kubernetes
  • What is a Kubernetes Cluster?
  • kubernetes kind
  • What can you tell us about the different components of Kubernetes Architecture?
  • kubernetes pod
  • What is Kubernetes?
  • What is a pod in Kubernetes?
  • What is Kubectl?
  • what is kubernetes
  • What is a Kubernetes Operator?
  • kube cluster
  • what is kubernetes used for
  • What is Kubernetes?
  • What do you know about clusters in Kubernetes?
  • What is Kubernetes?
  • What is kubectl?
  • kube cluster
  • What is Kubernetes?
  • Kubernetes
  • kubernetes evict
  • kubernetes objects
  • the basic kubernets objects include
  • What are some features of Kubernetes?
  • Which of the following are core Kubernetes objects?
  • Kubernetes Architecture
  • What are the features of Kubernetes?
  • What do you know about clusters in Kubernetes?
  • Kubernetes security best practices
  • 4 Kubernetes Monitoring Best Practices

  • Kubernetes Basic Concepts

    0

    Now we know broadly what Kubernetes is and a little bit about its most important partner, Docker, but what does Kubernetes look like once you jump into it?

    Below we’ll break down the basic components present in any Kubernetes app and show how they build on each other. We’ll also look at some of the additional tools sure to help you along the way.

    Pods

    These are the smallest unit of application in Kubernetes. Pods represent a single, isolated instance of an application and the resources needed to execute it, each having their own IP address.

    Pods are made up of one or more containers that work together and share a life cycle on the same node; each pod could be composed of a single container or multiple containers, depending on its complexity.

    This can be advantageous as all containers within the same pod can communicate without the need for additional setup from the user.

    These pods, however, are highly isolated and cannot communicate with other pods. This is where our next component, services, comes into the picture.

    Services

    Services are an abstraction that sit one level above pods, acting as a director between individual pods and the outside world.

    Services define a policy to access selected pods. Once this is done, pods in this service’s set can communicate freely until the policy to access is changed.

    Services are also convenient when creating complex, interdependent programs as they set a single Domain Name Service (DNS) record for all pods within their service. Another part of the program, a deployment (see below), can then use this DNS name to access information from these pods without needing to know the IP addresses for each.

    In other words, another part of the program can connect to this pod group through the shared DNS record without needing to track status or information of each pod.

    Group based access allows for greater flexibility than individual access as pods can be added or removed from the service group without code revision.

    Popularity 5/10 Helpfulness 1/10 Language whatever
    Source: Grepper
    Link to this answer
    Share Copy Link
    Contributed on May 14 2023
    Sumit Rawal
    0 Answers  Avg Quality 2/10


    X

    Continue with Google

    By continuing, I agree that I have read and agree to Greppers's Terms of Service and Privacy Policy.
    X
    Grepper Account Login Required

    Oops, You will need to install Grepper and log-in to perform this action.