fix(vars.yaml): Same accesskey for minio and s3, if using minio
Signed-off-by: rjshrjndrn <rjshrjndrn@gmail.com>
This commit is contained in:
parent
b34e7bb100
commit
8c53804f45
1 changed files with 4 additions and 4 deletions
|
|
@ -61,8 +61,8 @@ minio:
|
||||||
minio:
|
minio:
|
||||||
# For generating passwords
|
# For generating passwords
|
||||||
# `openssl rand -hex 20`
|
# `openssl rand -hex 20`
|
||||||
accessKey: "{{ randAlphaNum 20 }}"
|
accessKey: &accessKey "{{ randAlphaNum 20 }}"
|
||||||
secretKey: "{{ randAlphaNum 20 }}"
|
secretKey: &secretKey "{{ randAlphaNum 20 }}"
|
||||||
|
|
||||||
ingress-nginx: &ingress-nginx
|
ingress-nginx: &ingress-nginx
|
||||||
# If you're using an external proxy in front of OpenReplay, update the proxy ports below.
|
# If you're using an external proxy in front of OpenReplay, update the proxy ports below.
|
||||||
|
|
@ -135,8 +135,8 @@ global:
|
||||||
# if you're using one node installation, where
|
# if you're using one node installation, where
|
||||||
# you're using local s3, make sure these variables
|
# you're using local s3, make sure these variables
|
||||||
# are same as minio.global.minio.accesskey and secretKey
|
# are same as minio.global.minio.accesskey and secretKey
|
||||||
accessKey: "{{ randAlphaNum 20 }}"
|
accessKey: *accessKey
|
||||||
secretKey: "{{ randAlphaNum 20}}"
|
secretKey: *secretKey
|
||||||
email:
|
email:
|
||||||
emailHost: ''
|
emailHost: ''
|
||||||
emailPort: '587'
|
emailPort: '587'
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue