Skip to content

Commit a4f9698

Browse files
committed
jh-frontend update images
1 parent bee3d0d commit a4f9698

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

create_config_maps.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ VALID_BUILD_TARGETS=("cas" "c9088" "hub" "elter")
1515
# Determine if the input is a namespace or build target
1616
if [[ " ${VALID_BUILD_TARGETS[@]} " =~ " $INPUT " ]]; then
1717
BUILD_TARGET=$INPUT
18-
NAMESPACE=$DEFAULT_NAMESPACE
18+
NAMESPACE=""
1919
else
2020
BUILD_TARGET="hub"
2121
NAMESPACE=$INPUT
@@ -42,7 +42,7 @@ create_configmap() {
4242

4343
# Don't delete ConfigMaps from the cluster automatically
4444
if [ "$NAMESPACE" = "$DEFAULT_NAMESPACE" ]; then
45-
kubectl delete configmap $name --namespace $NAMESPACE --ignore-not-found
45+
# kubectl delete configmap $name --namespace $NAMESPACE --ignore-not-found
4646
kubectl create configmap $name --from-file=$path --namespace $NAMESPACE
4747
else
4848
# Creating the ConfigMaps locally

src/HomePage.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,10 +142,10 @@ function HomePage() {
142142
</p>
143143
<div className="start-named-server">
144144
<input
145-
placeholder="Name your server"
145+
placeholder="Name Your Server - Required!"
146146
onChange={(e) => setServerName(e.target.value)}
147147
/>
148-
<Button title="Add New Server" onClickFun={handleAddServer} disabled={serverName === ""} />
148+
<Button title="Add New Named Server" onClickFun={handleAddServer} disabled={serverName === ""} />
149149
</div>
150150
{Object.entries(spawners).map(([name, spawner], dropdownIndex) => (
151151
<DropDownButton

src/data/formData.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,8 @@ export const selectOptionsStorage = {
1818

1919
export const images = {
2020
simple: {
21-
"minimalnb:26-09-2024": "Minimal NB",
2221
"minimalnb:02-01-2025-ai": "Minimal NB with AI",
23-
"minimalnb:26-09-2024-ssh": "Minimal NB with SSH access",
22+
"minimalnb:01-02-2025": "Minimal NB with SSH access",
2423
"minimalnb-cs:31-10-2024": "Minimal NB with Integrated VS Code",
2524
"minimalnb-cs:17-11-2024-ai": "Minimal NB with Integrated VS Code and AI",
2625
"datasciencenb:26-09-2024": "DataScience NB",
@@ -51,8 +50,9 @@ export const images = {
5150
"matlab:r2024a": "MATLAB R2024a",
5251
},
5352
various: {
54-
"colab:2024-10-17": "Google Colab",
53+
"colab:2025-01-07": "Google Colab",
5554
"alphapose:2023-10-26": "Alphapose",
55+
"cuda-ubuntu:11.6-22.04": "CUDA 11.6",
5656
"cuda-ubuntu:11.8-22.04": "CUDA 11.8",
5757
"cuda-ubuntu:12.0-24.04": "CUDA 12.0",
5858
"cuda-ubuntu:12.1-22.04": "CUDA 12.1",
@@ -61,7 +61,7 @@ export const images = {
6161
"cuda-ubuntu:12.4-22.04": "CUDA 12.4",
6262
},
6363
folding: {
64-
"colabfold:1.5.5": "Colabfold 1.5.5",
64+
"colabfold:1.5.5-cu12": "Colabfold 1.5.5",
6565
"esmfold:2.0.0": "ESM Fold 2.0",
6666
},
6767
};

0 commit comments

Comments
 (0)