loghouse
loghouse copied to clipboard
No Endpoint Created on Ingress
I am using Kubernetes 1.8.1 and when I use helm to deploy this, the ingress never gets a public ip endpoint and has no errors to speak of (nothing in events etc) any ideas?
What is content of your ingress? I mean ingress in k8s.
@yurchenkosv I'm using the default values except I changed a few things like the DNS host.
{{- if .Values.ingress.enable }}
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
name: loghouse
namespace: {{ .Values.namespace }}
annotations:
kubernetes.io/ingress.class: "nginx"
{{- if .Values.ingress.enable_https }}
kubernetes.io/tls-acme: "true"
ingress.kubernetes.io/force-ssl-redirect: "true"
ingress.kubernetes.io/ssl-redirect: "true"
{{- else }}
ingress.kubernetes.io/force-ssl-redirect: "false"
ingress.kubernetes.io/ssl-redirect: "false"
{{- end }}
spec:
rules:
- host: {{ .Values.ingress.loghouse_host }}
http:
paths:
- path: /
backend:
serviceName: loghouse
servicePort: 80
{{- if .Values.ingress.enable_https }}
tls:
- hosts:
- {{ .Values.ingress.loghouse_host }}
secretName: loghouse
{{- end }}
{{- end }}
I tried both named port http and 80 but the ingress never spins up a load balancer.
@alexcurtin What is your IngressController?
@alexclear it's ingress-gce