Skip to content

Commit aee47eb

Browse files
committed
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 <[email protected]>
1 parent 14feb2c commit aee47eb

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

daprdocs/content/en/operations/hosting/kubernetes/kubernetes-production.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,9 @@ helm search repo dapr --devel --versions
8787
# create a values file to store variables
8888
touch values.yml
8989
cat << EOF >> values.yml
90-
global.ha.enabled: true
91-
90+
global:
91+
ha:
92+
enabled: true
9293
EOF
9394

9495
# run install/upgrade

0 commit comments

Comments
 (0)