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 . ```
16 lines
474 B
YAML
16 lines
474 B
YAML
{{- if .Values.imagePullSecret.create }}
|
|
kind: Secret
|
|
apiVersion: v1
|
|
metadata:
|
|
name: {{ include "jupyterhub.image-pull-secret.fullname" . }}
|
|
labels:
|
|
{{- include "jupyterhub.labels" . | nindent 4 }}
|
|
annotations:
|
|
"helm.sh/hook": pre-install,pre-upgrade
|
|
"helm.sh/hook-delete-policy": before-hook-creation
|
|
"helm.sh/hook-weight": "-20"
|
|
type: kubernetes.io/dockerconfigjson
|
|
data:
|
|
.dockerconfigjson: {{ include "jupyterhub.dockerconfigjson" . }}
|
|
{{- end }}
|