From 7ca78aa7e9ac020cd1096f174c889e8651cd9381 Mon Sep 17 00:00:00 2001 From: Tobias Trabelsi <64127335+tobias-trabelsi-sonarsource@users.noreply.github.com> Date: Wed, 17 Nov 2021 08:12:25 +0100 Subject: [PATCH] SONAR-15551 added missing env description for ES auth settings --- .../src/pages/setup/sonar-properties.md | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/server/sonar-docs/src/pages/setup/sonar-properties.md b/server/sonar-docs/src/pages/setup/sonar-properties.md index 692a00e4bbe..b153dff95e9 100644 --- a/server/sonar-docs/src/pages/setup/sonar-properties.md +++ b/server/sonar-docs/src/pages/setup/sonar-properties.md @@ -351,6 +351,10 @@ The name of the cluster. Required if multiple clusters are present on the same n Comma-delimited list of search hosts in the cluster. The list can contain either the host or the host and port, but not both. The item format is `ip/hostname` for host only or`ip/hostname:port` for host and port. `ip/hostname` can also be set to the service name of the search containers . +**`SONAR_CLUSTER_SEARCH_PASSWORD`** + +Password for Elasticsearch built-in user (elastic) which will be used on the client site. If provided, it enables authentication. This property needs to be set to the same value throughout the cluster. + ### Search Nodes Only **`SONAR_CLUSTER_ES_HOSTS`** @@ -361,6 +365,22 @@ Comma-delimited list of search hosts in the cluster. The list can contain either The name of the node that is used on Elasticsearch and stored in Hazelcast member attribute (NODE_NAME) +**`SONAR_CLUSTER_ES_SSL_KEYSTORE`** + +File path to a keystore in PKCS#12 format. Can be the same PKCS#12 container as the `SONAR_CLUSTER_ES_SSL_TRUSTSTORE`. The user running SonarQube must have READ permission to that file. Required if password provided. + +**`SONAR_CLUSTER_ES_SSL_KEYSTOREPASSWORD`** + +Password to the keystore. + +**`SONAR_CLUSTER_ES_SSL_TRUSTSTORE`** + +File path to a truststore in PKCS#12 format. Can be the same PKCS#12 container as the `SONAR_CLUSTER_ES_SSL_KEYSTORE`. The user running SonarQube must have READ permission to that file. Required if password provided. + +**`SONAR_CLUSTER_ES_SSL_TRUSTSTOREPASSWORD`** + +Password to the truststore. + ### Application Nodes Only **`SONAR_CLUSTER_HOSTS`** -- 2.39.5