Forum Navigation
You need to log in to create posts and topics.

Expose service outside of the k8s cluster

Problem

user wants to access ClusterIP application inside k8s environment

Solution

Delete the Service

kubectl delete service prometheus-grafana

and recreate it as load balancer

kubectl expose deployment/prometheus-grafana –type=”LoadBalancer”