From f3bca096fcacb44520f21ab730d90e6ef53e6e92 Mon Sep 17 00:00:00 2001 From: Hiru Fernando Date: Wed, 23 Jul 2025 12:51:49 -0400 Subject: [PATCH] Remove EOL spaces in docs --- doc/advanced/geo/_index.md | 2 +- doc/backup-restore/restore.md | 4 ++-- doc/charts/gitlab/gitlab-pages/_index.md | 2 +- doc/charts/gitlab/sidekiq/_index.md | 2 +- doc/charts/registry/_index.md | 2 +- doc/development/nginx.md | 2 +- doc/installation/migration/helm_to_package.md | 4 ++-- doc/troubleshooting/_index.md | 2 +- 8 files changed, 10 insertions(+), 10 deletions(-) diff --git a/doc/advanced/geo/_index.md b/doc/advanced/geo/_index.md index b65534f1db..2cc1d68a9a 100644 --- a/doc/advanced/geo/_index.md +++ b/doc/advanced/geo/_index.md @@ -245,7 +245,7 @@ To deploy this chart as a Geo Primary, start [from this example configuration](h hosts: domain: example.com # optionally configure a static IP for the default LoadBalancer - # externalIP: + # externalIP: # optionally configure a static IP for the Geo LoadBalancer # externalGeoIP: # configure DB connection diff --git a/doc/backup-restore/restore.md b/doc/backup-restore/restore.md index b4219e79ef..174ee5b5be 100644 --- a/doc/backup-restore/restore.md +++ b/doc/backup-restore/restore.md @@ -71,10 +71,10 @@ the rails secret from a Linux package instance, secrets are stored in JSON forma - 'your active record encryption deterministic key' active_record_encryption_key_derivation_salt: 'your active record key derivation salt' ``` - + 1. Check that multi-line secrets like `openid_connect_signing_key` do not contain any newline characters (`\n`). Split any multi-line secrets into separate lines to avoid [a decoding issue](https://gitlab.com/gitlab-org/charts/gitlab/-/issues/3352#note_994430571) when consumed by applications. - + To restore the rails secrets from a YAML file: 1. Find the object name for the rails secrets: diff --git a/doc/charts/gitlab/gitlab-pages/_index.md b/doc/charts/gitlab/gitlab-pages/_index.md index 14ee6e9802..d31da20b31 100644 --- a/doc/charts/gitlab/gitlab-pages/_index.md +++ b/doc/charts/gitlab/gitlab-pages/_index.md @@ -247,7 +247,7 @@ the following network policy: - To the `webservice` pod to port `8181` - To endpoints like AWS VPC endpoint for S3 `172.16.1.0/24` on port `443` -_Note the example provided is only an example and may not be complete_ +_Note the example provided is only an example and may not be complete_ The example is based on the assumption that `kube-dns` was deployed to the namespace `kube-system`, `prometheus` was deployed to the namespace diff --git a/doc/charts/gitlab/sidekiq/_index.md b/doc/charts/gitlab/sidekiq/_index.md index 739fa8a480..a211b698f1 100644 --- a/doc/charts/gitlab/sidekiq/_index.md +++ b/doc/charts/gitlab/sidekiq/_index.md @@ -624,7 +624,7 @@ places. This examples adds the following network policy: {{< alert type="note" >}} The Sidekiq service requires outbound connectivity to the public -internet for images on [external object storage](../../../advanced/external-object-storage) if no local endpoint is available. +internet for images on [external object storage](../../../advanced/external-object-storage) if no local endpoint is available. {{< /alert >}} diff --git a/doc/charts/registry/_index.md b/doc/charts/registry/_index.md index 31c16efb4d..c643937d0b 100644 --- a/doc/charts/registry/_index.md +++ b/doc/charts/registry/_index.md @@ -586,7 +586,7 @@ adds the following network restrictions to the Registry service: - To the internet `0.0.0.0/0` to port `443` _Note that the registry service requires outbound connectivity to the public -internet for images on [external object storage](../../advanced/external-object-storage) if no endpoint is used_ +internet for images on [external object storage](../../advanced/external-object-storage) if no endpoint is used_ The example is based on the assumption that `kube-dns` was deployed to the namespace `kube-system`, `prometheus` was deployed to the namespace diff --git a/doc/development/nginx.md b/doc/development/nginx.md index 684b731446..76d5bb3439 100644 --- a/doc/development/nginx.md +++ b/doc/development/nginx.md @@ -7,7 +7,7 @@ title: Working with the bundled NGINX ## NGINX -We provide a fork of NGINX with this chart that we maintain via patch files. +We provide a fork of NGINX with this chart that we maintain via patch files. This approach was choosen to easier upgrade NGINX chart versions and have a better overview of changes that we made. diff --git a/doc/installation/migration/helm_to_package.md b/doc/installation/migration/helm_to_package.md index 30c2d92a3c..276dbc3716 100644 --- a/doc/installation/migration/helm_to_package.md +++ b/doc/installation/migration/helm_to_package.md @@ -76,7 +76,7 @@ To migrate from a Helm installation to a Linux package (Omnibus) installation: jq -r --arg host_key ${k} '.data[$host_key]' ${HOSTKEYS_JSON} | base64 --decode > ssh/$k ; \ done ``` - + 1. Upload the converted files to the GitLab Rails nodes. 1. On the target Rails node: 1. Back up the `/etc/ssh/` directory, for example: @@ -92,7 +92,7 @@ To migrate from a Helm installation to a Linux package (Omnibus) installation: ``` 1. Move the converted host key files in place (`/etc/ssh`): - + ```shell for f in ssh/*; do sudo install -b -D -o root -g root -m 0600 $f /etc/${f} ; done ``` diff --git a/doc/troubleshooting/_index.md b/doc/troubleshooting/_index.md index ac1cc3c37e..9d7c2f3fef 100644 --- a/doc/troubleshooting/_index.md +++ b/doc/troubleshooting/_index.md @@ -437,7 +437,7 @@ This error is caused by OpenSSH `sshd` being unable to handle readiness and live ```yaml gitlab: - gitlab-shell: + gitlab-shell: sshDaemon: gitlab-sshd ``` -- GitLab