Skip to content

Commit

Permalink
Merge pull request #5932 from gmerritt/ugrgke
Browse files Browse the repository at this point in the history
nfs and load balancer fixes
  • Loading branch information
gmerritt authored Aug 9, 2024
2 parents 3226f49 + c9e3bd6 commit 3cdb31c
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 9 deletions.
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

0 comments on commit 3cdb31c

Please sign in to comment.