CloudNative

Kubernetes – Practice Test / Interview Q&A on Service Discovery

This article represents concepts, revision / quick notes, and practice or sample test/interview questions and answers on Service Discovery topic of Kubernetes. These notes, Q&A could provide to be helpful for those appearing for Kubernetes administrator certification exams (CKA).


Revision Notes – Service Discovery

  • Kubernetes supports the following two modes of service discovery:
    • Environment variable
    • DNS
  • Service environment details can be set based on the following format. Service name needs to be in uppercase.
    • {SVCNAME}_SERVICE_HOST
    • {SVCNAME}_SERVICE_PORT
  • When using environment variables for service discovery, it is a mandate that the services must be created prior to the pods which want to access those services.
  • DNS server creates a set of records for each service discovered via watching Kubernetes APIs.
  • Services of type ExternalName can only be accessed through DNS server.
  • For headless service (exposed with a single service IP) not requiring load balancer, the cluster IP (spec.clusterIP)should be specified as None.
  • A service can be reached based on the ServiceType assigned to it. The details can be found on this page, Service types
    • ClusterIP: The service can be reached from within the cluster
    • NodePort: The service can be reached from outside the cluster at the address NodeIP:NodePort. The port is a static port. The request is then routed to appropriate clusterIP service. Note that the clusterIP service gets created automatically. The port number supported must fall in the range, 30000-32767
    • LoadBalancer: The service can be reached from the load balancer. The NodePort and ClusterIP services to which request from load balancer will be routed are created automatically.
    • ExternalName: The service can be mapped to the content of ExternalName.
  • Kubernetes support the notion of the internal load balancer for route traffic from services inside the same VPC. For different cloud providers AWS, Azure or GCP, different configuration annotation need to be applied. Details could be found on this page, internal load balancer
  • Kubernetes supports network load balancer starting version 1.9.



Practice Test – Service Discovery

[wp_quiz id=”6192″]

Other Practice Tests / Interview Questions and Answers



References

Ajitesh Kumar

I have been recently working in the area of Data analytics including Data Science and Machine Learning / Deep Learning. I am also passionate about different technologies including programming languages such as Java/JEE, Javascript, Python, R, Julia, etc, and technologies such as Blockchain, mobile computing, cloud-native technologies, application security, cloud computing platforms, big data, etc. I would love to connect with you on Linkedin. Check out my latest book titled as First Principles Thinking: Building winning products using first principles thinking.

Recent Posts

Agentic Reasoning Design Patterns in AI: Examples

In recent years, artificial intelligence (AI) has evolved to include more sophisticated and capable agents,…

3 weeks ago

LLMs for Adaptive Learning & Personalized Education

Adaptive learning helps in tailoring learning experiences to fit the unique needs of each student.…

4 weeks ago

Sparse Mixture of Experts (MoE) Models: Examples

With the increasing demand for more powerful machine learning (ML) systems that can handle diverse…

1 month ago

Anxiety Disorder Detection & Machine Learning Techniques

Anxiety is a common mental health condition that affects millions of people around the world.…

1 month ago

Confounder Features & Machine Learning Models: Examples

In machine learning, confounder features or variables can significantly affect the accuracy and validity of…

1 month ago

Credit Card Fraud Detection & Machine Learning

Last updated: 26 Sept, 2024 Credit card fraud detection is a major concern for credit…

1 month ago