-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Working version of the production demo server
- Loading branch information
1 parent
842fe13
commit 046f489
Showing
4 changed files
with
35 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,21 +9,23 @@ jupyterhub: | |
contactEmail: [email protected] | ||
singleuser: | ||
image: | ||
name: superstar54/qe-tar-home-z | ||
tag: latest | ||
name: ghcr.io/aiidalab/qe | ||
tag: edge | ||
pullPolicy: Always | ||
cmd: | ||
- start-singleuser.sh | ||
extraEnv: | ||
JUPYTERHUB_SINGLEUSER_APP: notebook.notebookapp.NotebookApp | ||
cpu: | ||
guarantee: 1 | ||
limit: 2 | ||
guarantee: 1.5 | ||
limit: 1.5 | ||
memory: | ||
guarantee: 4G | ||
limit: 8G | ||
guarantee: 5G | ||
limit: 5G | ||
storage: | ||
type: none # user don't have persistent storage, the data will be lost after the pod is deleted | ||
homeMountPath: /home/jovyan | ||
dynamic: | ||
storageClass: default | ||
extraVolumes: | ||
- name: hub-templates | ||
configMap: | ||
|
@@ -41,24 +43,24 @@ jupyterhub: | |
name: hub-external | ||
- mountPath: /etc/jupyter | ||
name: etc-jupyter | ||
profileList: | ||
# A potential issue that profiles share the same PVC | ||
# using multiple storageClass can solve this issue, but we do not | ||
# need to do this for now. | ||
- display_name: Quantum ESPRESSO App image | ||
description: Ready to run Quantum ESPRESSO app. | ||
default: true | ||
- display_name: Minimal bare AiiDAlab image | ||
description: If you want have a bare AiiDAlab and install you own app from store. | ||
kubespawner_override: | ||
image: ghcr.io/aiidalab/full-stack:v2023.1014 | ||
- display_name: AiiDA in JupyterLab | ||
description: JupyterLab with AiiDA installed for tutorials. | ||
kubespawner_override: | ||
image: ghcr.io/aiidalab/base-with-services:v2023.1014 | ||
default_url: /lab | ||
environment: | ||
JUPYTERHUB_SINGLEUSER_APP: jupyter_server.serverapp.ServerApp | ||
# profileList: | ||
# # A potential issue that profiles share the same PVC | ||
# # using multiple storageClass can solve this issue, but we do not | ||
# # need to do this for now. | ||
# - display_name: Quantum ESPRESSO App image | ||
# description: Ready to run Quantum ESPRESSO app. | ||
# default: true | ||
# - display_name: Minimal bare AiiDAlab image | ||
# description: If you want have a bare AiiDAlab and install you own app from store. | ||
# kubespawner_override: | ||
# image: ghcr.io/aiidalab/full-stack:v2023.1014 | ||
# - display_name: AiiDA in JupyterLab | ||
# description: JupyterLab with AiiDA installed for tutorials. | ||
# kubespawner_override: | ||
# image: ghcr.io/aiidalab/base-with-services:v2023.1014 | ||
# default_url: /lab | ||
# environment: | ||
# JUPYTERHUB_SINGLEUSER_APP: jupyter_server.serverapp.ServerApp | ||
hub: | ||
db: | ||
pvc: | ||
|