diff --git a/charts/stable/minio/docs/installation_notes.md b/charts/stable/minio/docs/installation_notes.md index fb5bfafd6c3..39b2a797b8e 100644 --- a/charts/stable/minio/docs/installation_notes.md +++ b/charts/stable/minio/docs/installation_notes.md @@ -2,37 +2,24 @@ title: Installation Notes --- -## TrueNAS SCALE - -:::note[Written for] - -- Platform: TrueNAS SCALE Cobia 23.10.1 -- App Version: 2023.12.23 -- Chart Version: 9.1.0 - -::: - :::caution -When using a PVC the backup data will be stored on the dataset that holds the app data. If minio is used to store backup data to safe guard your application data it is recommended to configure it on a different zpool, this can be done with a hostpath. +There is only one persistence configured in the standard template. Which is used to store the config of minio and is mounted to `/data`. +If you want the backup data on a different PVC/NFS share/.... Configure an extra persistence in your Helm values. + +When minio is used to store backup data like your VOLSYNC data for example, make sure this deployment is not on the same server as where all other charts are running. ::: :::note[Preparation] -1. Create a dataset for the data mount of minio referred to as -2. Set the proper owner and permissions required for the hostpath, 600 is the minimal permission level required -3. Make sure you have DNS setup for all buckets as S3 requires DNS to be set for each bucket. See "Using Ingress and API ingress is recommended" +1. CHMOD 600 is the minimal permission level required for storage +2. Make sure you have DNS setup for all buckets as S3 requires DNS to be set for each bucket. See "Using Ingress and API ingress is recommended" ::: -This is a guide containing the minimal required settings for installation: +This is the minimal required settings for deployment via environment variables: -- Workload->Settings->Containers->Main Container->Image Environment - - `MINIO_ROOT_USER` and `MINIO_ROOT_PASSWORD` represent the username and password used to login to minio -- Storage and Persistence->Integrated Persistent Storage->App Config Storage - - `Type of Storage` set to host path - - `Host Path` select the dataset -- Using Ingress and API ingress is recommended - - Main Ingress (Also the Console) : minio.mydomain.com - - API ingress: bucket_name.minio.mydomain.com (one entry for each bucket) +- `MINIO_ROOT_USER` and `MINIO_ROOT_PASSWORD` represent the username and password used to login to minio. + +For detailed information regarding all environment variables, check documention upstream.