mirror of
https://github.com/bitnami/charts.git
synced 2026-02-26 07:37:57 +08:00
bitnami/consul Add activation of gossip encryption when custom key is set (#20328)
This commit is contained in:
@@ -96,7 +96,7 @@ helm delete --purge my-release
|
||||
| `datacenterName` | Datacenter name for Consul. If not supplied, will use the Consul | `dc1` |
|
||||
| `domain` | Consul domain name | `consul` |
|
||||
| `raftMultiplier` | Multiplier used to scale key Raft timing parameters | `1` |
|
||||
| `gossipKey` | Gossip key for all members. The key must be 16-bytes, can be generated with $(consul keygen) | `""` |
|
||||
| `gossipKey` | Gossip key for all members. The key must be base64-encoded, can be generated with $(consul keygen) | `""` |
|
||||
| `tlsEncryptionSecretName` | Name of existing secret with TLS encryption data | `""` |
|
||||
| `hostAliases` | Deployment pod host aliases | `[]` |
|
||||
| `configuration` | HashiCorp Consul configuration to be injected as ConfigMap | `""` |
|
||||
|
||||
@@ -154,6 +154,8 @@ spec:
|
||||
- name: CONSUL_DATACENTER
|
||||
value: {{ .Values.datacenterName | quote }}
|
||||
{{- if .Values.gossipKey }}
|
||||
- name: CONSUL_GOSSIP_ENCRYPTION
|
||||
value: "yes"
|
||||
- name: CONSUL_GOSSIP_ENCRYPTION_KEY
|
||||
valueFrom:
|
||||
secretKeyRef:
|
||||
|
||||
@@ -103,9 +103,9 @@ domain: consul
|
||||
## @param raftMultiplier Multiplier used to scale key Raft timing parameters
|
||||
##
|
||||
raftMultiplier: "1"
|
||||
## @param gossipKey Gossip key for all members. The key must be 16-bytes, can be generated with $(consul keygen)
|
||||
## @param gossipKey Gossip key for all members. The key must be base64-encoded, can be generated with $(consul keygen)
|
||||
## Example:
|
||||
## gossipKey: 887Syd/BOvbtvRAKviazMg==
|
||||
## gossipKey: "DVoLa/k99hfBEdIfCLkzSpWg4obElLYVIFDsutKCL/w="
|
||||
##
|
||||
gossipKey: ""
|
||||
## @param tlsEncryptionSecretName Name of existing secret with TLS encryption data
|
||||
|
||||
Reference in New Issue
Block a user