service

Writing Code in Dim Office

How to create Ingress rules in Kubernetes using Minikube

Reading Time: 4 minutes In this blog, we will learn about Ingress and how to create ingress rules, So Stay Tuned! PREREQUISITES Minikube Cluster kubectl Installed WHAT IS INGRESS? Ingress is an API object that allows the external traffic to the Kubernetes cluster based on the routing mechanism. It provides routing rules to manage external users’ access in a Kubernetes cluster via HTTP/HTTPS. WHY DO WE USE INGRESS? An Continue Reading

What is Headless Service? Setup a Service in Kubernetes

Reading Time: 3 minutes In the default behaviour of Kubernetes we assign as Internal IP address to the service.And with this IP address the service will proxy and load-balance the requests to the pods.We can choose which kind of service type we need while deploying it. These service types are- ClusterIP- For exposing the server on cluster-internal IP address NodePort- For exposing the service through a static port on Continue Reading

Interacting with Services & API: Angular 2

Reading Time: 2 minutes In this post we are going to create an Angular 2 application from scratch, the target of this post is to explain the process to create a service and use an API to get the data from that, where we will also see, how to handle the response of the API, preview the response on the view and handle the exceptions if any found in Continue Reading