This is an automated email from the ASF dual-hosted git repository. frankgh pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/cassandra-sidecar.git
The following commit(s) were added to refs/heads/trunk by this push: new 2d7333e5 CASSSIDECAR-256: SSL section should be at root level in sidecar.yaml (#222) 2d7333e5 is described below commit 2d7333e5f22da12abb8176a8412de252dd15c045 Author: Yuntong Qu <yuntong...@gmail.com> AuthorDate: Fri Jun 6 17:55:37 2025 -0400 CASSSIDECAR-256: SSL section should be at root level in sidecar.yaml (#222) Patch by Yuntong Qu; reviewed by Francisco Guerrero; Saranya Krishnakumar; Yifan Cai for CASSSIDECAR-256 Co-authored-by: yqu63 <yq...@bloomberg.net> --- CHANGES.txt | 1 + conf/sidecar.yaml | 34 +++++++++++++++++----------------- 2 files changed, 18 insertions(+), 17 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index b7b76cb9..f964ed25 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,5 +1,6 @@ 0.2.0 ----- + * Fix configuration for ssl section to be at root level in sidecar.yaml (CASSSIDECAR-256) * Fix restore ranges of failed sidecar-managed restore jobs do not persist (CASSSIDECAR-255) * Added endpoint for listing files for Live Migration (CASSSIDECAR-222) * Use List roles statement to check for super user status (CASSSIDECAR-252) diff --git a/conf/sidecar.yaml b/conf/sidecar.yaml index 32c627c5..3079a681 100644 --- a/conf/sidecar.yaml +++ b/conf/sidecar.yaml @@ -175,23 +175,23 @@ schema_reporting: # Schema Reporting configuration # # Enable SSL configuration (Disabled by default) # -# ssl: -# enabled: true -# use_openssl: true -# handshake_timeout: 10s -# client_auth: NONE # valid options are NONE, REQUEST, REQUIRED -# accepted_protocols: -# - TLSv1.2 -# - TLSv1.3 -# cipher_suites: [] -# keystore: -# type: PKCS12 -# path: "path/to/keystore.p12" -# password: password -# check_interval: 5m -# truststore: -# path: "path/to/truststore.p12" -# password: password +#ssl: +# enabled: true +# use_openssl: true +# handshake_timeout: 10s +# client_auth: NONE # valid options are NONE, REQUEST, REQUIRED +# accepted_protocols: +# - TLSv1.2 +# - TLSv1.3 +# cipher_suites: [] +# keystore: +# type: PKCS12 +# path: "path/to/keystore.p12" +# password: password +# check_interval: 5m +# truststore: +# path: "path/to/truststore.p12" +# password: password # To enable access control, the role used by sidecar to talk to Cassandra must be granted following permissions # - GRANT DESCRIBE ON ALL ROLES to <insert_sidecar_role> - Allows sidecar to list roles that belong to a user --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org For additional commands, e-mail: commits-h...@cassandra.apache.org