Skip to content

Commit

Permalink
Add values for deploying jupyter on ex-machina with models and ingress
Browse files Browse the repository at this point in the history
  • Loading branch information
nicklausbrown committed Sep 7, 2023
1 parent 9ecc909 commit 6f1c4f4
Showing 1 changed file with 20 additions and 4 deletions.
24 changes: 20 additions & 4 deletions jupyter-ex/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,26 @@ jupyter:
pullPolicy: IfNotPresent
tag: "5034811708"

service:
type: NodePort
port: 8888
nodePort: 30100
volumes:
- name: model-volume
hostPath:
readOnly: true
path: /mnt/nvme0/models/

volumeMounts:
- mountPath: /app/models
name: model-volume

ingress:
enabled: true
annotations:
kubernetes.io/ingress.class: traefik
hosts:
- host: jupyter-ex.k3s.nickbrown.ai
paths:
- path: /
pathType: ImplementationSpecific
tls: [ ]

resources:
limits:
Expand Down

0 comments on commit 6f1c4f4

Please sign in to comment.