Skip to content

Commit 8ed8f3d

Browse files
authored
Fix Incorrect Helm Chart Keys in MySQL Installation Documentation (#17160)
This PR addresses an issue in the documentation for installing the MySQL chart using Helm. Previously, the documentation provided a Helm install command that incorrectly referenced mysqlUser and mysqlDatabase. However, these keys don't exist in the chart's values.yaml file anymore.
1 parent f018f68 commit 8ed8f3d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/Deploy/Deploy-Fleet-on-Kubernetes.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,14 +57,14 @@ Helm v2
5757
```sh
5858
helm install \
5959
--name fleet-database \
60-
--set mysqlUser=fleet,mysqlDatabase=fleet \
60+
--set auth.username=fleet,auth.database=fleet \
6161
oci://registry-1.docker.io/bitnamicharts/mysql
6262
```
6363

6464
Helm v3
6565
```sh
6666
helm install fleet-database \
67-
--set mysqlUser=fleet,mysqlDatabase=fleet \
67+
--set auth.username=fleet,auth.database=fleet \
6868
oci://registry-1.docker.io/bitnamicharts/mysql
6969
```
7070

0 commit comments

Comments
 (0)