mirror of https://github.com/dapr/docs.git
Correction to global ha configuration using yaml
The global configuration to enable ha was not correct, it was in the same format as the command line, but it's a yaml file and it should be in a nested format. Signed-off-by: Abel Perez Martinez <abelperezok@gmail.com>
This commit is contained in:
parent
14feb2cb67
commit
aee47eb437
|
@ -87,8 +87,9 @@ helm search repo dapr --devel --versions
|
||||||
# create a values file to store variables
|
# create a values file to store variables
|
||||||
touch values.yml
|
touch values.yml
|
||||||
cat << EOF >> values.yml
|
cat << EOF >> values.yml
|
||||||
global.ha.enabled: true
|
global:
|
||||||
|
ha:
|
||||||
|
enabled: true
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
# run install/upgrade
|
# run install/upgrade
|
||||||
|
|
Loading…
Reference in New Issue