Skip to content

Commit

Permalink
Fix schema validation errors
Browse files Browse the repository at this point in the history
  • Loading branch information
consideRatio committed Mar 2, 2022
1 parent f770396 commit 6b28bd9
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 4 deletions.
2 changes: 1 addition & 1 deletion config/clusters/farallon/staging.values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ basehub:
url: https://2i2c.org
funded_by:
name: Farallon Institute
urL: http://www.faralloninstitute.org/
url: http://www.faralloninstitute.org/
singleuser:
initContainers:
# Need to explicitly fix ownership here, since EFS doesn't do anonuid
Expand Down
4 changes: 4 additions & 0 deletions config/clusters/utoronto/staging.values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,10 @@ jupyterhub:
extraFiles:
github-app-private-key.pem:
mountPath: /etc/github/github-app-private-key.pem
# stringData field will be set via encrypted values files but added here
# to meet the chart schema validation requirements without the need to
# use secret values during the validation.
stringData: "dummy"
gitconfig:
mountPath: /etc/gitconfig
# app-id comes from https://github.com/organizations/utoronto-2i2c/settings/apps/utoronto-jupyterhub-private-cloner
Expand Down
2 changes: 1 addition & 1 deletion config/clusters/uwhackweeks/staging.values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ basehub:
name: 2i2c
url: https://2i2c.org
funded_by:
name:
name: ICESat Hackweek
url: https://icesat-2.hackweek.io
singleuser:
serviceAccountName: cloud-user-sa
Expand Down
9 changes: 7 additions & 2 deletions helm-charts/basehub/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ inClusterNFS:
enabled: false
size: 100Gi

# A placeholder as global values that can be referenced from the same location
# of any chart should be possible to provide, but aren't necessarily provided or
# used.
global: {}

jupyterhub:
custom:
singleuserAdmin:
Expand All @@ -38,9 +43,9 @@ jupyterhub:
mountPath: /home/jovyan/shared-readwrite
subPath: _shared
cloudResources:
provider:
provider: ""
gcp:
projectId:
projectId: ""
scratchBucket:
enabled: false
docs_service:
Expand Down
5 changes: 5 additions & 0 deletions helm-charts/daskhub/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -201,3 +201,8 @@ dask-gateway:
k8s.dask.org/node-purpose: core
service:
type: ClusterIP # Access Dask Gateway through JupyterHub. To access the Gateway from outside JupyterHub, this must be changed to a `LoadBalancer`.

# A placeholder as global values that can be referenced from the same location
# of any chart should be possible to provide, but aren't necessarily provided or
# used.
global: {}

0 comments on commit 6b28bd9

Please sign in to comment.