mirror of
https://github.com/bitnami/charts.git
synced 2026-03-16 06:47:30 +08:00
[bitnami/nats] Adds auth.timeout value to manage client authentication timeout setting (#6177)
This commit is contained in:
@@ -24,4 +24,4 @@ name: nats
|
||||
sources:
|
||||
- https://github.com/bitnami/bitnami-docker-nats
|
||||
- https://nats.io/
|
||||
version: 6.2.6
|
||||
version: 6.3.0
|
||||
|
||||
@@ -79,6 +79,7 @@ The following tables lists the configurable parameters of the NATS chart and the
|
||||
| `auth.user` | Client authentication user | `nats_client` |
|
||||
| `auth.password` | Client authentication password | `random alhpanumeric string (10)` |
|
||||
| `auth.token` | Client authentication token | `nil` |
|
||||
| `auth.timeout` | Client authentication timeout (seconds) | `1` |
|
||||
| `clusterAuth.enabled` | Switch to enable/disable cluster authentication | `true` |
|
||||
| `clusterAuth.user` | Cluster authentication user | `nats_cluster` |
|
||||
| `clusterAuth.password` | Cluster authentication password | `random alhpanumeric string (10)` |
|
||||
|
||||
@@ -26,7 +26,7 @@ data:
|
||||
{{- else if .Values.auth.token }}
|
||||
token: {{ .Values.auth.token | quote }}
|
||||
{{- end }}
|
||||
timeout: 1
|
||||
timeout: {{ int .Values.auth.timeout }}
|
||||
}
|
||||
{{- end }}
|
||||
|
||||
|
||||
@@ -63,6 +63,7 @@ auth:
|
||||
user: nats_client
|
||||
# password:
|
||||
# token:
|
||||
timeout: 1
|
||||
|
||||
## Cluster Authentication
|
||||
## ref: https://github.com/nats-io/gnatsd#authentication
|
||||
|
||||
Reference in New Issue
Block a user