From e0e9e27c3a7c2b8b54b08708cdbfa1e7f85dc773 Mon Sep 17 00:00:00 2001 From: Andrey Zhavoronkov Date: Wed, 30 Nov 2022 17:41:22 +0200 Subject: [PATCH] Update docs about k8s deployment (#5388) --- .../docs/administration/advanced/k8s_deployment_with_helm.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/site/content/en/docs/administration/advanced/k8s_deployment_with_helm.md b/site/content/en/docs/administration/advanced/k8s_deployment_with_helm.md index ed2196b0..28e6b6c3 100644 --- a/site/content/en/docs/administration/advanced/k8s_deployment_with_helm.md +++ b/site/content/en/docs/administration/advanced/k8s_deployment_with_helm.md @@ -234,3 +234,8 @@ Just create file `values.override.yaml` and place your changes here, using same Then reference it in helm update/install command using `-f` flag ### Why you used external charts to provide redis and postgres? Because they definitely know what they do better then we are, so we are getting more quality and less support +### How to use custom domain name with k8s deployment: +The default value `cvat.local` may be overriden with `--set ingress.hosts[0].host` option like this: +```shell +helm upgrade -n default cvat -i --create-namespace helm-chart -f helm-chart/values.yaml -f helm-chart/values.override.yaml --set ingress.hosts[0].host=YOUR_FQDN +```