Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create a BinderHub helm chart for deployment onto 2i2c's infrastructure #1289

Merged
merged 18 commits into from Jun 7, 2022
Merged
Show file tree
Hide file tree
Changes from 9 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
23 changes: 23 additions & 0 deletions helm-charts/binderhub/.helmignore
@@ -0,0 +1,23 @@
# Patterns to ignore when building packages.
# This supports shell glob matching, relative path matching, and
# negation (prefixed with !). Only one pattern per line.
.DS_Store
# Common VCS dirs
.git/
.gitignore
.bzr/
.bzrignore
.hg/
.hgignore
.svn/
# Common backup files
*.swp
*.bak
*.tmp
*.orig
*~
# Various IDEs
.project
.idea/
*.tmproj
.vscode/
13 changes: 13 additions & 0 deletions helm-charts/binderhub/Chart.yaml
@@ -0,0 +1,13 @@
apiVersion: v2
appVersion: "1.0"
description: Deployment chart for BinderHub
name: binderhub
version: "0.1.0"
dependencies:
- name: binderhub
version: "0.2.0-n919.he87e25a"
repository: "https://jupyterhub.github.io/helm-chart/"
- name: dask-gateway
condition: dask-gateway.enabled, global.dask-gateway.enabled
version: "2022.4.0"
repository: "https://helm.dask.org/"
18 changes: 18 additions & 0 deletions helm-charts/binderhub/values.schema.yaml
@@ -0,0 +1,18 @@
# This schema (a jsonschema in YAML format) is used to generate
# values.schema.json which is, when available, used by the helm CLI for client
# side validation by Helm of the chart's values before template rendering.
#
# We look to document everything we have default values for in values.yaml, but
# we don't look to enforce the perfect validation logic within this file.
#
# ref: https://json-schema.org/learn/getting-started-step-by-step.html
#
$schema: http://json-schema.org/draft-07/schema#
type: object
additionalProperties: false
required:
- global
properties:
global:
type: object
additionalProperties: true