Installation using Helm
Prerequisites
- At least 2 GB of RAM available on your cluster per pod's worker
- Helm 3
- PV provisioner support in the underlying infrastructure (essential for storing logs)
Get Repo Info
To obtain info about the repository, execute the following command:
helm repo add regulaforensics https://regulaforensics.github.io/helm-charts
helm repo update
See the helm repo for command documentation.
Add License
Create a docreader-license
secret from the regula.license
file:
kubectl create secret generic docreader-license --from-file=regula.license
Note that the regula.license
file should be located in the same folder where the kubectl create secret
command is executed.
Install Chart
To install the chart with the release name my-release
, execute the command:
helm install my-release regulaforensics/docreader --set licenseSecretName=docreader-license
Install Chart with Chip Verification Enabled
helm install my-release regulaforensics/docreader --set chipVerification.enabled=true --set minio.enabled=true
Uninstall Chart
To uninstall/delete the my-release
deployment, use the command:
helm delete my-release
The command removes all the Kubernetes components associated with the chart and deletes the release.
Settings
You can find the Helm Chart settings at the helm repo.
To change multiple configurations, download and use the values.yaml
file.