How do I access this Kubernetes service via kubectl proxy?
I want to access my Grafana Kubernetes service via the kubectl proxy server , but for some reason it won't work even though I can make it work for other services. Given the below service definition, why is it not available on http://localhost:8001/api/v1/proxy/namespaces/monitoring/services/grafana ? grafana-service.yaml apiVersion: v1 kind: Service metadata: namespace: monitoring name: grafana labels: app: grafana spec: type: NodePort ports: - name: web port: 3000 protocol: TCP nodePort: 30902 selector: app: grafana grafana-deployment.yaml apiVersion: extensions/v1beta1 kind: Deployment