From 42aecc9d00469e152af797c1df9dc355abf645dc Mon Sep 17 00:00:00 2001 From: Filip Aleksic Date: Tue, 26 Nov 2024 09:29:29 +0000 Subject: [PATCH] Fix URLs for docs --- doc/charts/gitlab/webservice/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/charts/gitlab/webservice/index.md b/doc/charts/gitlab/webservice/index.md index c8edf915ba..eeb3dff448 100644 --- a/doc/charts/gitlab/webservice/index.md +++ b/doc/charts/gitlab/webservice/index.md @@ -161,8 +161,8 @@ to the `helm install` command using the `--set` flags. | `workerProcesses` | `2` | Webservice number of workers | | `workhorse.keywatcher` | `true` | Subscribe workhorse to Redis. This is **required** by any deployment servicing request to `/api/*`, but can be safely disabled for other deployments | | `workhorse.shutdownTimeout` | `global.webservice.workerTimeout + 1` (seconds) | Time to wait for all Web requests to clear from Workhorse. Examples: `1min`, `65s`. | -| `workhorse.trustedCIDRsForPropagation` | | A list of CIDR blocks that can be trusted for propagating a correlation ID. The `-propagateCorrelationID` option must also be used in `workhorse.extraArgs` for this to work. See the [Workhorse documentation](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/development/workhorse/configuration.md#propagate-correlation-ids) for more details. | -| `workhorse.trustedCIDRsForXForwardedFor` | | A list of CIDR blocks that can be used to resolve the actual client IP via the `X-Forwarded-For` HTTP header. This is used with `workhorse.trustedCIDRsForPropagation`. See the [Workhorse documentation](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/development/workhorse/configuration.md#propagate-correlation-ids) for more details. | +| `workhorse.trustedCIDRsForPropagation` | | A list of CIDR blocks that can be trusted for propagating a correlation ID. The `-propagateCorrelationID` option must also be used in `workhorse.extraArgs` for this to work. See the [Workhorse documentation](development/workhorse/configuration.html#propagate-correlation-ids) for more details. | +| `workhorse.trustedCIDRsForXForwardedFor` | | A list of CIDR blocks that can be used to resolve the actual client IP via the `X-Forwarded-For` HTTP header. This is used with `workhorse.trustedCIDRsForPropagation`. See the [Workhorse documentation](development/workhorse/configuration.html#trusted-proxies) for more details. | | `workhorse.containerSecurityContext` | | Override container [securityContext](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#securitycontext-v1-core) under which the container is started | | `workhorse.containerSecurityContext.runAsUser` | `1000` | User ID under which the container should be started | | `workhorse.containerSecurityContext.allowPrivilegeEscalation` | `false` | Controls whether a process of the container can gain more privileges than its parent process | -- GitLab