Skip to content

Commit 5750206

Browse files
committed
Fix bug in jupyter ingress
1 parent afdd083 commit 5750206

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

charts/jupyter/templates/ingress.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{{- if .Values.ingress.enabled -}}
22
{{- $fullName := include "jupyter.fullname" . -}}
3-
{{- $servicePort := .Values.service.port -}}
43
{{- $ingressPath := .Values.ingress.path -}}
54
apiVersion: extensions/v1beta1
65
kind: Ingress
@@ -35,6 +34,6 @@ spec:
3534
- path: {{ $ingressPath }}
3635
backend:
3736
serviceName: {{ $fullName }}
38-
servicePort: {{ $servicePort }}
37+
servicePort: web
3938
{{- end }}
4039
{{- end }}

charts/jupyter/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ ingress:
3131
# kubernetes.io/tls-acme: "true"
3232
path: /
3333
hosts:
34-
- jupyter.127-0-0-1.nip
34+
- jupyter.127-0-0-1.nip.io
3535
tls: []
3636
# - secretName: jupyter-tls
3737
# hosts:

0 commit comments

Comments
 (0)