Skip to content

Latest commit

 

History

History
19 lines (19 loc) · 1.11 KB

README.md

File metadata and controls

19 lines (19 loc) · 1.11 KB

Democratic CSI Values File

Installation

Note that the IP Addresses below are localhost. Please change those - as well as the password for root - to what your TrueNAS is.

  1. Follow this guide for NFS or iSCSI to setup your TrueNAS in preparation for Democratic CSI installation. Note that the values file is targetting ONLY NFS and thus should be configured differently using the values file or injection based on the guide linked above.
  2. Install using the values file.
helm repo add democratic-csi https://democratic-csi.github.io/charts/ && \
helm repo update && \
helm upgrade --install democratic-csi democratic-csi/democratic-csi \
    --namespace csi \
    --create-namespace \
    --set driver.config.httpConnection.host=127.0.0.1 \
    --set driver.config.httpConnection.password="my-root-password" \
    --set driver.config.sshConnection.host=127.0.0.1 \
    --set driver.config.sshConnection.password="my-root-password" \
    --set driver.config.nfs.shareHost=127.0.0.1 \
    --version 0.14.6 \
    --atomic