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:
Abel Perez Martinez 2021-12-29 12:26:27 +00:00
parent 14feb2cb67
commit aee47eb437
1 changed files with 3 additions and 2 deletions

View File

@ -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