From 6e12416000ff1a10970e947ebf5259464fac5213 Mon Sep 17 00:00:00 2001 From: avivfisher Date: Thu, 6 Jun 2024 16:20:37 +0300 Subject: [PATCH 1/2] Add s3_ca_cert documentation --- .../rs/references/cli-utilities/rladmin/cluster/config.md | 1 + 1 file changed, 1 insertion(+) diff --git a/content/operate/rs/references/cli-utilities/rladmin/cluster/config.md b/content/operate/rs/references/cli-utilities/rladmin/cluster/config.md index 0e58c35242..2849b0411a 100644 --- a/content/operate/rs/references/cli-utilities/rladmin/cluster/config.md +++ b/content/operate/rs/references/cli-utilities/rladmin/cluster/config.md @@ -81,6 +81,7 @@ Updates the cluster configuration. | min_sentinel_TLS_version | `1.2`
`1.3` | The minimum TLS protocol version that is supported for the discovery service | | reserved_ports | list of ports/port ranges | List of reserved ports and/or port ranges to avoid using for database endpoints (for example `reserved_ports 11000 13000-13010`) | | s3_url | string | The URL of S3 export and import | +| s3_ca_cert | string | The CA certificate file path for S3 export and import | | saslauthd_ldap_conf | filepath | Updates LDAP authentication configuration for the cluster | | sentinel_cipher_suites | list of ciphers | Cipher suites used by the discovery service (supported ciphers are implemented by the [cipher_suites.go]() package) | | sentinel_tls_mode | `allowed`
`required`
`disabled` | Define the SSL policy for the discovery service
(previously named `sentinel_ssl_policy`) | From 500a69e6fb3728489bde4ed363010f07e34e0e67 Mon Sep 17 00:00:00 2001 From: Rachel Elledge <86307637+rrelledge@users.noreply.github.com> Date: Thu, 6 Jun 2024 09:45:56 -0500 Subject: [PATCH 2/2] Add s3_ca_cert to command syntax --- .../rs/references/cli-utilities/rladmin/cluster/config.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/content/operate/rs/references/cli-utilities/rladmin/cluster/config.md b/content/operate/rs/references/cli-utilities/rladmin/cluster/config.md index 2849b0411a..2f8a8b2eb1 100644 --- a/content/operate/rs/references/cli-utilities/rladmin/cluster/config.md +++ b/content/operate/rs/references/cli-utilities/rladmin/cluster/config.md @@ -43,6 +43,7 @@ Updates the cluster configuration. [ min_sentinel_TLS_version { 1.2 | 1.3 } ] [ reserved_ports ] [ s3_url ] + [ s3_ca_cert ] [ saslauthd_ldap_conf ] [ sentinel_tls_mode { allowed | required | disabled } ] [ sentinel_cipher_suites ] @@ -81,7 +82,7 @@ Updates the cluster configuration. | min_sentinel_TLS_version | `1.2`
`1.3` | The minimum TLS protocol version that is supported for the discovery service | | reserved_ports | list of ports/port ranges | List of reserved ports and/or port ranges to avoid using for database endpoints (for example `reserved_ports 11000 13000-13010`) | | s3_url | string | The URL of S3 export and import | -| s3_ca_cert | string | The CA certificate file path for S3 export and import | +| s3_ca_cert | string | The CA certificate filepath for S3 export and import | | saslauthd_ldap_conf | filepath | Updates LDAP authentication configuration for the cluster | | sentinel_cipher_suites | list of ciphers | Cipher suites used by the discovery service (supported ciphers are implemented by the [cipher_suites.go]() package) | | sentinel_tls_mode | `allowed`
`required`
`disabled` | Define the SSL policy for the discovery service
(previously named `sentinel_ssl_policy`) |