Skip to content

Instantly share code, notes, and snippets.

@jbouder
Last active June 17, 2026 12:59
Show Gist options
  • Select an option

  • Save jbouder/22a38e332bb2d15986f40fce860f59b2 to your computer and use it in GitHub Desktop.

Select an option

Save jbouder/22a38e332bb2d15986f40fce860f59b2 to your computer and use it in GitHub Desktop.
Nebari Branding
## Keycloak
1. Login to Admin Creds
2. Navigate to Nebari Realm
3. Go to Realm Settings
4. Update the Display Name
## Nebari Landing
spec:
source:
helm:
values: |
frontend:
branding:
title: "Nebari Intelligence Hub"
logoUrl: "data:image/png;base64,123456..."
logoDarkUrl: "data:image/png;base64,123456..."
faviconUrl: "data:image/png;base64,123456..."
theme:
light:
primary: "#1d385b"
## Nebi
spec:
source:
helm:
values: |
nebariapp:
landingPage:
branding:
theme:
light:
primary: "#1d385b"
## JupyterHub (Data Science Pack)
## Note: a data scient pack refresh may be required for this change to take affect
## kubectl apply -f apps/apps/data-science-pack.yaml
spec:
source:
helm:
values: |
jupyterhub:
hub:
extraConfig:
99-template-vars: |
c.JupyterHub.template_vars = {
**c.JupyterHub.template_vars,
"logo": "data:image/png;base64,123456...",
"favicon": "data:image/png;base64,123456...",
"primary_color": "#1d385b",
"primary_color_light": "#1D385B10",
"primary_color_dark": "#14263e",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment