Installation

Helm registry

Authorize to Sarkan's OCI registry using Helm:

helm registry login 'harbor.indevops.com'

HostDisk CSI

  1. Generate a new values.yml file from the defaults:

    helm show values oci://harbor.indevops.com/hostdisk-csi/hostdisk-csi \
        --version "<VERSION>" > values.yml
    
  2. Edit the values.yml and configure it to match your cluster and requirements. You will need to configure the registry using valid credentials.

  3. Deploy to the Kubernetes cluster:

    helm install "hostdisk-csi" \
        oci://harbor.indevops.com/hostdisk-csi/hostdisk-csi --version "<VERSION>" \
        --create-namespace -n "hostdisk-csi" \
        -f ./values.yml
    
  4. See HostDisk CSI section for further configuration of this component.

SaunaFS Operator

  1. Generate a new values.yml file from the defaults:

    helm show values oci://harbor.indevops.com/saunafs-operator/saunafs-operator \
        --version "<VERSION>" > values.yml
    
  2. Edit the values.yml and configure it to match your cluster and requirements. You will need to configure the registry using valid credentials.

  3. Deploy to the Kubernetes cluster:

    helm install "saunafs-operator" \
        oci://harbor.indevops.com/saunafs-operator/saunafs-operator --version "<VERSION>" \
        --create-namespace -n "saunafs-operator" \
        -f ./values.yml
    
  4. See SaunaFS Operator section for further configuration of this component.

SaunaFS CSI

  1. Generate a new values.yml file from the defaults:

    helm show values oci://harbor.indevops.com/saunafs-csi/saunafs-csi \
        --version "<VERSION>" > values.yml
    
  2. Edit the values.yml and configure it to match your cluster and requirements. You will need to configure the registry using valid credentials.

  3. Deploy to the Kubernetes cluster:

    helm install "saunafs-csi" \
        oci://harbor.indevops.com/saunafs-csi/saunafs-csi --version "<VERSION>" \
        --create-namespace -n "saunafs-csi" \
        -f ./values.yml
    
  4. See SaunaFS CSI section for further configuration of this component.