ingress-nginx: IP does not found
Hi:
I deploy a single ingress to provide grafana access from outside, the ingress is as follow:
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
name: monitoring-ingress
annotations:
kubernetes.io/ingress.class: "nginx"
spec:
rules:
- http:
paths:
- path:
backend:
serviceName: monitoring-grafana
servicePort: 5432
So, when I get the ingress details, the IP address does not appear!!!
kubectl get ing
NAME HOSTS ADDRESS PORTS AGE
coiling-toucan-monocular * 80 1d
monitoring-ingress * 80 13m
kubectl get ing monitoring-ingress -o yaml
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
annotations:
kubernetes.io/ingress.class: nginx
creationTimestamp: 2017-10-03T14:03:35Z
generation: 1
name: monitoring-ingress
namespace: default
resourceVersion: "929379"
selfLink: /apis/extensions/v1beta1/namespaces/default/ingresses/monitoring-ingress
uid: a5b84800-a843-11e7-b4b3-005056b77c78
spec:
rules:
- http:
paths:
- backend:
serviceName: monitoring-grafana
servicePort: 5432
status:
loadBalancer: {}
Where is my IP address??? The other ingress running about 2 days also does not show the IP address!! What happend with this?
About this issue
- Original URL
- State: closed
- Created 7 years ago
- Comments: 31 (3 by maintainers)
Commits related to this issue
- k8s ingress https://github.com/kubernetes/ingress-nginx/issues/1467 — committed to RouR/ToDo-ToBuy by RouR 6 years ago
@felixPG Ok, I create a service for the ingress controller with an external IP. https://github.com/RouR/ToDo-ToBuy/blob/c1019a8d130e9940906651ac817bf61501f1274e/k8s/dev/nginx.yaml#L167
My web service is opened, cool! But
What`s going on with ingress address?
@RouR create a service for the ingress controller with an external IPs.
Regards