diff options
author | Tobias Trabelsi <64127335+tobias-trabelsi-sonarsource@users.noreply.github.com> | 2021-11-17 08:12:25 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2021-11-17 20:03:38 +0000 |
commit | 7ca78aa7e9ac020cd1096f174c889e8651cd9381 (patch) | |
tree | a2ad91f1539e2872644ac307eba6a7dd6579cb9e | |
parent | c908fec722157ae80fea2a323f6dcc64a306c6bb (diff) | |
download | sonarqube-7ca78aa7e9ac020cd1096f174c889e8651cd9381.tar.gz sonarqube-7ca78aa7e9ac020cd1096f174c889e8651cd9381.zip |
SONAR-15551 added missing env description for ES auth settings
-rw-r--r-- | server/sonar-docs/src/pages/setup/sonar-properties.md | 20 |
1 files changed, 20 insertions, 0 deletions
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`** |