Skip to content

CoffeaTeam/coffea-casa-custom-jupyterhub-templates

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 

Repository files navigation

Custom JupyterHub UI Templates for Coffea-casa AF

Basic Jupyterhub UI customization for the Coffea-casa AF.

Kubernetes Configuration

(based on configuration instructions)

Append the config below to your standard config to use the custom templates provided with this repo:

jupyterhub:
  hub:
    # clone custom JupyterHub templates into a volume
    initContainers:
      - name: git-clone-templates
        image: alpine/git
        args:
          - clone
          - --single-branch
          - --branch=main
          - --depth=1
          - --
          - https://github.com/CoffeaTeam/coffea-casa-custom-jupyterhub-templates.git
          - /etc/jupyterhub/custom
        securityContext:
          runAsUser: 0
        volumeMounts:
          - name: custom-templates
            mountPath: /etc/jupyterhub/custom
    extraVolumes:
      - name: custom-templates
        emptyDir: {}
    extraVolumeMounts:
      - name: custom-templates
        mountPath: /etc/jupyterhub/custom

    extraConfig:
      templates: |
        c.JupyterHub.template_paths = ['/etc/jupyterhub/custom/templates']

About

Custom JupyterHub UI Templates for Coffea-casa AF

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages