mirror of
https://github.com/dragonflydb/dragonfly.git
synced 2024-12-14 11:58:02 +00:00
d6043c7d6d
* feat(server): Enable overriding --requirepass form env var Signed-off-by: ashotland <ari@dragonflydb.io> * Change precednce order Elaborate test Signed-off-by: ashotland <ari@dragonflydb.io> * Update helm chart to support passowrd from secret Using recently added capability of setting dragonfly passowrd with the DFLY_PASSWORD environment variable Signed-off-by: ashotland <ari@dragonflydb.io> * rename to existingSecret* + CI file Signed-off-by: ashotland <ari@dragonflydb.io> * fix typo in comment Signed-off-by: ashotland <ari@dragonflydb.io> --------- Signed-off-by: ashotland <ari@dragonflydb.io>
13 lines
213 B
YAML
13 lines
213 B
YAML
extraObjects:
|
|
- apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: dfly-password
|
|
stringData:
|
|
password: foobar
|
|
|
|
passwordFromSecret:
|
|
enable: true
|
|
existingSecret:
|
|
name: dfly-password
|
|
key: password
|