Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DH-306] nfs and load balancer fixes #5932

Merged
merged 1 commit into from
Aug 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion deployments/ugr01/config/common.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
nfsPVC:
enabled: true
nfs:
serverIP: 10.49.181.18
serverIP: 10.185.238.42

jupyterhub:
scheduling:
Expand Down
29 changes: 21 additions & 8 deletions deployments/ugr01/config/prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,29 @@ nfsPVC:
shareName: shares/ugr01/prod

jupyterhub:
ingress:
enabled: true
hosts:
- ugr01.datahub.berkeley.edu
tls:
- secretName: tls-cert
hosts:
- ugr01.datahub.berkeley.edu
hub:
db:
pvc:
# This also holds logs
storage: 4Gi
prePuller:
continuous:
enabled: false
proxy:
service:
loadBalancerIP: 34.71.179.119
traefik:
extraInitContainers:
# This startup delay can help the k8s container network interface setup
# network routing of traffic to the pod, which is essential for the ACME
# challenge submitted by Traefik on startup to acquire a TLS certificate.
#
# Sleeping for 7 seconds has been consistently sufficient to avoid issues
# in GKE when this workaround was explored initially for GKE.
#
- name: startup-delay
image: busybox:stable
command: ["sh", "-c", "sleep 10"]
https:
hosts:
- ugr01.datahub.berkeley.edu
Loading