Skip to main content

local-path-provisioner


설치

git clone https://github.com/rancher/local-path-provisioner.git \
--branch v0.0.26
helm package ./local-path-provisioner/deploy/chart/local-path-provisioner
helm show values local-path-provisioner-0.0.26.tgz \
> local-path-provisioner-0.0.26.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.26.tgz \
-n storage \
-f local-path-provisioner-values.yaml \
> local-path-provisioner.yaml
helm upgrade local-path-provisioner local-path-provisioner-0.0.26.tgz \
--install \
--history-max 5 \
-n storage \
-f local-path-provisioner-values.yaml