Skip to content

Commit

Permalink
docs: Updated mysql secret generation command (acryldata#438)
Browse files Browse the repository at this point in the history
* docs: Updated mysql secret generation command

By the change of mysql helm chart version the provided secret
has at least three keys:
- mysql-root-password
- mysql-replication-password
- mysql-password

Otherwise mysql chart won't install.
More information: https://artifacthub.io/packages/helm/bitnami/mysql#mysql-common-parameters

* fix: Applied requested changes
  • Loading branch information
mkaramuk authored Mar 12, 2024
1 parent d56a9ae commit 6888a49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ separately on-prem or leveraged as managed services.
Assuming kubectl context points to the correct kubernetes cluster, first create kubernetes secrets that contain MySQL and Neo4j passwords.

```(shell)
kubectl create secret generic mysql-secrets --from-literal=mysql-root-password=datahub
kubectl create secret generic mysql-secrets --from-literal=mysql-root-password=datahub --from-literal=mysql-password=datahub
kubectl create secret generic neo4j-secrets --from-literal=neo4j-password=datahub --from-literal=NEO4J_AUTH=neo4j/datahub
```

Expand Down

0 comments on commit 6888a49

Please sign in to comment.