diff --git a/manual/setup/helm_chart_cluster.md b/manual/setup/helm_chart_cluster.md index 7995d90a..ec675fdf 100644 --- a/manual/setup/helm_chart_cluster.md +++ b/manual/setup/helm_chart_cluster.md @@ -69,6 +69,17 @@ After installation, you need to start the k8s control plane service on each node helm repo add seafile https://haiwen.github.io/seafile-helm-chart/repo helm upgrade --install seafile seafile/cluster --namespace seafile --create-namespace --values my-values.yaml ``` + + !!! tip "Seafile helm chart 13.0 support variable validity checking" + + Starting from Seafile helm chart 13.0, the validity of variables in `my-values.yaml` will be checked at deployment time. When there is a variable validity check that fails, you may encounter the following error message: + + ``` + You have enabled but is not specified and is not allowed to be empty + ``` + + If you encounter the following message, please check the relevant configuration in `my-values.yaml`. + !!! success After installing the chart, the cluster is going to initial progress, you can see the following message by `kubectl logs seafile- -n seafile`: diff --git a/manual/setup/helm_chart_single_node.md b/manual/setup/helm_chart_single_node.md index 056ba4cc..f0e9960a 100644 --- a/manual/setup/helm_chart_single_node.md +++ b/manual/setup/helm_chart_single_node.md @@ -43,7 +43,8 @@ Please refer [here](./system_requirements.md) for the details of system requirem --from-literal=JWT_PRIVATE_KEY='' \ --from-literal=SEAFILE_MYSQL_DB_PASSWORD='' \ --from-literal=INIT_SEAFILE_ADMIN_PASSWORD='' \ - --from-literal=INIT_SEAFILE_MYSQL_ROOT_PASSWORD='' + --from-literal=INIT_SEAFILE_MYSQL_ROOT_PASSWORD='' \ + --from-literal=REDIS_PASSWORD='' ``` where the `JWT_PRIVATE_KEY` can be generate by `pwgen -s 40 1` @@ -94,6 +95,16 @@ Please refer [here](./system_requirements.md) for the details of system requirem helm upgrade --install seafile seafile/ce --namespace seafile --create-namespace --values my-values.yaml ``` + !!! tip "Seafile helm chart 13.0 support variable validity checking" + + Starting from Seafile helm chart 13.0, the validity of variables in `my-values.yaml` will be checked at deployment time. When there is a variable validity check that fails, you may encounter the following error message: + + ``` + You have enabled but is not specified and is not allowed to be empty + ``` + + If you encounter the following message, please check the relevant configuration in `my-values.yaml`. + After installing the chart, the Seafile pod should startup automaticlly. !!! note "About Seafile service"