mirror of
https://github.com/bitnami/charts.git
synced 2026-03-05 06:47:25 +08:00
[bitnami/fluentd] (#6097)
* typo error on certificates name * add root certificate * upgrade chart version (path release) * add root CA to volume with TLS secrets * add root CA certificate * fix : add root CA certificate to TLS secret (and not ingress TLS) * add root ca certificate to values.yaml
This commit is contained in:
@@ -25,4 +25,4 @@ name: fluentd
|
||||
sources:
|
||||
- https://github.com/bitnami/bitnami-docker-fluentd
|
||||
- https://www.fluentd.org/
|
||||
version: 3.6.5
|
||||
version: 3.6.6
|
||||
|
||||
@@ -216,8 +216,8 @@ The following tables lists the configurable parameters of the fluentd chart and
|
||||
| `metrics.serviceMonitor.annotations` | ServiceMonitor annotations | `nil` |
|
||||
| `tls.enabled` | Enable the addition of TLS certificates | `false` |
|
||||
| `tls.caCertificate` | Ca certificate | Certificate Authority (CA) bundle content |
|
||||
| `tls.serverCertificate` | Server certificate | Server certificate content |
|
||||
| `tls.serverKey` | Server Key | Server private key content |
|
||||
| `tls.certificate` | Server certificate | Server certificate content |
|
||||
| `tls.key` | Server Key | Server private key content |
|
||||
| `tls.existingSecret` | Existing secret with certificate content | `nil` |
|
||||
|
||||
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
|
||||
|
||||
@@ -146,6 +146,8 @@ spec:
|
||||
path: tls.crt
|
||||
- key: tls.key
|
||||
path: tls.key
|
||||
- key: rootCA.crt
|
||||
path: rootCA.crt
|
||||
{{- end }}
|
||||
- name: fluentd-config
|
||||
configMap:
|
||||
|
||||
@@ -151,6 +151,8 @@ spec:
|
||||
path: tls.crt
|
||||
- key: tls.key
|
||||
path: tls.key
|
||||
- key: rootCA.crt
|
||||
path: rootCA.crt
|
||||
{{- end }}
|
||||
- name: fluentd-config
|
||||
configMap:
|
||||
|
||||
@@ -29,4 +29,5 @@ type: kubernetes.io/tls
|
||||
data:
|
||||
tls.crt: {{ required "A valid .Values.tls.certificate entry required!" .Values.tls.certificate | b64enc }}
|
||||
tls.key: {{ required "A valid .Values.tls.key entry required!" .Values.tls.key | b64enc }}
|
||||
rootCA.crt: {{ required "A valid .Values.tls.caCertificate entry required!" .Values.tls.caCertificate | b64enc }}
|
||||
{{- end }}
|
||||
|
||||
@@ -988,4 +988,5 @@ tls:
|
||||
enabled: false
|
||||
certificate: |-
|
||||
key: |-
|
||||
caCertificate: |-
|
||||
# existingSecret: name-of-existing-secret-to-certificates
|
||||
|
||||
Reference in New Issue
Block a user