[bitnami/cassandra] Amend cassandra TLS documentation (#8694)

* Amend cassandra TLS documentation

Signed-off-by: Fran Mulero <fmulero@vmware.com>
This commit is contained in:
Fran Mulero
2022-01-18 09:28:08 +01:00
committed by GitHub
parent e71d38ea4e
commit 3cd017a8fb
2 changed files with 4 additions and 4 deletions

View File

@@ -23,4 +23,4 @@ name: cassandra
sources:
- https://github.com/bitnami/bitnami-docker-cassandra
- http://cassandra.apache.org
version: 9.1.0
version: 9.1.1

View File

@@ -304,10 +304,10 @@ Bitnami will release a new chart updating its containers if a new version of the
This chart supports TLS between client and server and between nodes, as explained below:
* For internode cluster encryption, set the `cluster.internodeEncryption` chart parameter to a value different from `none`. Available values are `all`, `dc` or `rack`.
* For client-server encryption, set the `cluster.clientEncryption` chart parameter to `true`.
* For internode cluster encryption, set the `tls.internodeEncryption` chart parameter to a value different from `none`. Available values are `all`, `dc` or `rack`.
* For client-server encryption, set the `tls.clientEncryption` chart parameter to `true`.
In both cases, it is also necessary to create a secret containing the keystore and truststore certificates and their corresponding protection passwords. This secret is to be passed to the chart via the `tlsEncryptionSecretName` parameter at deployment-time.
In both cases, it is also necessary to create a secret containing the keystore and truststore certificates and their corresponding protection passwords. This secret is to be passed to the chart via the `tls.existingSecret` parameter at deployment-time.
Refer to the chart documentation for more [information on creating the secret and a TLS deployment example](https://docs.bitnami.com/kubernetes/infrastructure/cassandra/administration/enable-tls/).