File tree Expand file tree Collapse file tree 4 files changed +13
-1
lines changed Expand file tree Collapse file tree 4 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ local-volume-provisioner in your Kubernetes with `helm install` directly.
99- [ Install local-volume-provisioner with helm] ( #install-local-volume-provisioner-with-helm )
1010 - [ Table of Contents] ( #table-of-contents )
1111 - [ Install Helm] ( #install-helm )
12- - [ Custom your deployment with values file] ( #custom -your-deployment-with-values-file )
12+ - [ Customize your deployment with values file] ( #customize -your-deployment-with-values-file )
1313 - [ Install local-volume-provisioner] ( #install-local-volume-provisioner )
1414 - [ Generate yaml files with ` helm template ` and install with ` kubectl ` ] ( #generate-yaml-files-with-helm-template-and-install-with-kubectl )
1515 - [ Install using helm repo] ( #install-using-helm-repo )
@@ -146,6 +146,7 @@ provisioner chart and their default values.
146146| podLabels | Labels for each Pod in the DaemonSet. | map | ` - ` |
147147| image | Provisioner image. | str | ` registry.k8s.io/sig-storage/local-volume-provisioner:v2.5.0 ` |
148148| imagePullPolicy | Provisioner DaemonSet image pull policy. | str | ` - ` |
149+ | imagePullSecrets | Provisioner image pull secrets. | list | ` - ` |
149150| priorityClassName | Provisioner DaemonSet Pod Priority Class name. | str | `` |
150151| kubeConfigEnv | Specify the location of kubernetes config file. | str | ` - ` |
151152| nodeLabels | List of node labels to be copied to the PVs created by the provisioner. | list | ` - ` |
Original file line number Diff line number Diff line change 3131 serviceAccountName : {{ template "provisioner.serviceAccountName" . }}
3232{{- if .Values.priorityClassName }}
3333 priorityClassName : {{.Values.priorityClassName}}
34+ {{- end }}
35+ {{- if .Values.imagePullSecrets }}
36+ imagePullSecrets :
37+ {{ toYaml .Values.imagePullSecrets | nindent 8 }}
3438{{- end }}
3539 nodeSelector :
3640 kubernetes.io/os : linux
Original file line number Diff line number Diff line change 3232 serviceAccountName : {{ template "provisioner.serviceAccountName" . }}
3333{{- if .Values.priorityClassName }}
3434 priorityClassName : {{.Values.priorityClassName}}
35+ {{- end }}
36+ {{- if .Values.imagePullSecrets }}
37+ imagePullSecrets :
38+ {{ toYaml .Values.imagePullSecrets | nindent 8 }}
3539{{- end }}
3640 nodeSelector :
3741 kubernetes.io/os : windows
Original file line number Diff line number Diff line change @@ -100,6 +100,9 @@ image: registry.k8s.io/sig-storage/local-volume-provisioner:v2.6.0
100100# Defines Image download policy, see kubernetes documentation for available values.
101101# imagePullPolicy: Always
102102
103+ # Defines Image pull secrets for the provisioner image.
104+ imagePullSecrets : []
105+
103106# Defines a name of the Pod Priority Class to use with the Provisioner DaemonSet
104107# Note that if you want to make it critical, specify "system-cluster-critical"
105108# or "system-node-critical" and deploy in kube-system namespace.
You can’t perform that action at this time.
0 commit comments