Image Overview: local-path-provisioner

Overview: local-path-provisioner Chainguard Image

Overview

Local Path Provisioner provides a way for the Kubernetes users to utilize the local storage in each node. Based on the user configuration, the Local Path Provisioner will create either hostPath or local based persistent volume on the node automatically. It utilizes the features introduced by Kubernetes Local Persistent Volume feature, but makes it a simpler solution than the built-in local volume feature in Kubernetes.

Download this Image

The image is available on cgr.dev:

docker pull cgr.dev/chainguard-private/local-path-provisioner:latest

Usage

You can deploy the local-path-provisioner using the Kustomization:

$ cat <<EOF > kustomization.yaml
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
  - https://github.com/rancher/local-path-provisioner/deploy?ref=master
images:
  - name: rancher/local-path-provisioner:master-head
    newName: cgr.dev/chainguard/local-path-provisioner
    newTag: latest
namespace: local-path-provisioner
EOF
$ kubectl apply -k .

[!TIP] Please jump to official USAGE documentation for more details.

Last updated: 2024-06-23 00:43