Skip to content

Commit

Permalink
Fix ingress definition to include tensorboard port
Browse files Browse the repository at this point in the history
  • Loading branch information
nicklausbrown committed Apr 20, 2024
1 parent 6f10337 commit 9abebc0
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion charts/jupyter/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.4.3
version: 0.4.4

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
2 changes: 1 addition & 1 deletion charts/jupyter/templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ spec:
service:
name: {{ $fullName }}
port:
number: {{ $svcPort }}
number: {{ default $svcPort .svcPort }}
{{- else }}
serviceName: {{ $fullName }}
servicePort: {{ $svcPort }}
Expand Down
1 change: 1 addition & 0 deletions charts/jupyter/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ ingress:
paths:
- path: /
pathType: ImplementationSpecific
svcPort: 8888
tls: []
# - secretName: chart-example-tls
# hosts:
Expand Down
2 changes: 1 addition & 1 deletion jupyter-treus/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ appVersion: "1.0.0"

dependencies:
- name: jupyter
version: 0.4.3
version: 0.4.4
repository: https://nicklausbrown.github.io/jupyter-kubernetes/
1 change: 0 additions & 1 deletion jupyter-treus/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ jupyter:
paths:
- path: /
pathType: ImplementationSpecific
svcPort: 8888
- path: /tensorboard
pathType: ImplementationSpecific
svcPort: 6006
Expand Down

0 comments on commit 9abebc0

Please sign in to comment.