Micke Nordin
324724c3b1
Export 3.0.3 like so: ``` helm repo add jupyterhub https://hub.jupyter.org/helm-chart/ helm fetch jupyterhub/jupyterhub --version 3.0.3 --untar --untardir . ```
32 lines
871 B
Plaintext
32 lines
871 B
Plaintext
# Anything within the root folder of the Helm chart, where Chart.yaml resides,
|
|
# will be embedded into the packaged Helm chart. This is reasonable since only
|
|
# when the templates render after the chart has been packaged and distributed,
|
|
# will the templates logic evaluate that determines if other files were
|
|
# referenced, such as our our files/hub/jupyterhub_config.py.
|
|
#
|
|
# Here are files that we intentionally ignore to avoid them being packaged,
|
|
# because we don't want to reference them from our templates anyhow.
|
|
values.schema.yaml
|
|
|
|
# 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
|
|
*~
|
|
# Various IDEs
|
|
.project
|
|
.idea/
|
|
*.tmproj
|