Ingress.yaml has:
{{- range $host := .Values.ingress.hosts | default (list "") }}
- http:
paths:
- path: {{ $.Values.hub.baseUrl | trimSuffix "/" }}/{{ $.Values.ingress.pathSuffix }}
pathType: {{ $.Values.ingress.pathType }}
backend:
service:
name: {{ include "jupyterhub.proxy-public.fullname" $ }}
port:
name: http
{{- if $host }}
host: {{ $host | quote }}
{{- end }}
Shouldn’t this include an entry for port named https, if HTTPS is enabled?
regards
Ranga