local-path-provisioner
설치
Reference
git clone https://github.com/rancher/local-path-provisioner.git \
--branch v0.0.30
helm package ./local-path-provisioner/deploy/chart/local-path-provisioner
helm show values local-path-provisioner-0.0.30.tgz \
> local-path-provisioner-0.0.30.yaml
local-path-provisioner-values.yaml
storageClass:
defaultClass: false # storageclass.kubernetes.io/is-default-class=false
affinity: {}
tolerations: []
helm template local-path-provisioner local-path-provisioner-0.0.30.tgz \
-n kube-system \
-f local-path-provisioner-values.yaml \
> local-path-provisioner.yaml
helm upgrade local-path-provisioner local-path-provisioner-0.0.30.tgz \
--install \
--history-max 5 \
-n kube-system \
-f local-path-provisioner-values.yaml