Skip to content

Commit 850bae7

Browse files
authored
Merge pull request #6271 from lsst-sqre/t/DM-54465
DM-54465: Update to Nublado 12.1.0
2 parents a34f3a4 + ef594b6 commit 850bae7

File tree

5 files changed

+11
-4
lines changed

5 files changed

+11
-4
lines changed

applications/nublado/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ description: JupyterHub and custom spawner for the Rubin Science Platform
55
sources:
66
- https://github.com/lsst-sqre/nublado
77
home: https://nublado.lsst.io/
8-
appVersion: 12.0.2
8+
appVersion: 12.1.0
99

1010
dependencies:
1111
- name: jupyterhub
1212
# This is the Zero To Jupyterhub version (and quay.io/jupyterhub/k8s-hub)
13-
version: "4.3.2"
13+
version: "4.3.3"
1414
repository: https://jupyterhub.github.io/helm-chart/
1515

1616
annotations:

applications/nublado/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ JupyterHub and custom spawner for the Rubin Science Platform
5252
| controller.config.images.numReleases | int | `1` | Number of most-recent releases to prepull. |
5353
| controller.config.images.numWeeklies | int | `2` | Number of most-recent weeklies to prepull. |
5454
| controller.config.images.pin | list | `[]` | List of additional image tags to prepull. Listing the image tagged as recommended here is recommended when using a Docker image source to ensure its name can be expanded properly in the menu. |
55+
| controller.config.images.prepullTimeout | string | `"10m"` | How long to wait for a prepull of a pod to finish before deciding it has failed, in Safir `parse_timedelta` format. |
5556
| controller.config.images.recommendedTag | string | `"recommended"` | Tag marking the recommended image (shown first in the menu) |
5657
| controller.config.images.refreshInterval | string | `"5m"` | How frequently to refresh the list of available images and compare it to the cached images on nodes to prepull new images, in Safir `parse_timedelta` format. Newly-available images will not appear in the menu for up to this interval. |
5758
| controller.config.images.source | object | None, must be specified | Source for prepulled images. For Docker, set `type` to `docker`, `registry` to the hostname and `repository` to the name of the repository. For Google Artifact Repository, set `type` to `google`, `location` to the region, `projectId` to the Google project, `repository` to the name of the repository, and `image` to the name of the image. |
@@ -155,7 +156,7 @@ JupyterHub and custom spawner for the Rubin Science Platform
155156
| jupyterhub.hub.extraVolumeMounts | list | `hub-config` and the Gafaelfawr token | Additional volume mounts for JupyterHub |
156157
| jupyterhub.hub.extraVolumes | list | The `hub-config` `ConfigMap` and the Gafaelfawr token | Additional volumes to make available to JupyterHub |
157158
| jupyterhub.hub.image.name | string | `"ghcr.io/lsst-sqre/nublado-jupyterhub"` | Image to use for JupyterHub |
158-
| jupyterhub.hub.image.tag | string | `"12.0.2"` | Tag of image to use for JupyterHub |
159+
| jupyterhub.hub.image.tag | string | `"12.1.0"` | Tag of image to use for JupyterHub |
159160
| jupyterhub.hub.loadRoles.server.scopes | list | See `values.yaml` | Default scopes for the user's lab, overridden to allow the lab to delete itself (which we use for our added menu items) |
160161
| jupyterhub.hub.networkPolicy.enabled | bool | `false` | Whether to enable the default `NetworkPolicy` (currently, the upstream one does not work correctly) |
161162
| jupyterhub.hub.resources | object | See `values.yaml` | Resource limits and requests |

applications/nublado/values-base.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ controller:
22
slackAlerts: true
33
config:
44
images:
5+
prepullTimeout: "20m"
56
source:
67
type: "docker"
78
registry: "ts-dockerhub.lsst.org"

applications/nublado/values-summit.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
controller:
22
config:
33
images:
4+
prepullTimeout: "20m"
45
source:
56
type: "docker"
67
registry: "ts-dockerhub.lsst.org"

applications/nublado/values.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,10 @@ controller:
165165
effect: "NoSchedule"
166166

167167
images:
168+
# -- How long to wait for a prepull of a pod to finish before deciding
169+
# it has failed, in Safir `parse_timedelta` format.
170+
prepullTimeout: "10m"
171+
168172
# -- How frequently to refresh the list of available images and compare
169173
# it to the cached images on nodes to prepull new images, in Safir
170174
# `parse_timedelta` format. Newly-available images will not appear in
@@ -566,7 +570,7 @@ jupyterhub:
566570
name: "ghcr.io/lsst-sqre/nublado-jupyterhub"
567571

568572
# -- Tag of image to use for JupyterHub
569-
tag: "12.0.2"
573+
tag: "12.1.0"
570574

571575
# -- Resource limits and requests
572576
# @default -- See `values.yaml`

0 commit comments

Comments
 (0)