Skip to content

Commit

Permalink
usePasswordFiles
Browse files Browse the repository at this point in the history
Signed-off-by: dominik.jochec <[email protected]>
  • Loading branch information
dominik-jochec-veeam committed Mar 3, 2025
1 parent e534920 commit b7f523a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions pkg/app/mariadb.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,9 @@ func NewMariaDB(name string) App {
Chart: "mariadb",
RepoName: helm.BitnamiRepoName,
Values: map[string]string{
"auth.rootPassword": "mysecretpassword",
"image.pullPolicy": "Always",
"auth.usePasswordFiles": "false",
"auth.rootPassword": "mysecretpassword",
"image.pullPolicy": "Always",
},
},
}
Expand Down
6 changes: 3 additions & 3 deletions pkg/app/mysql.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ func NewMysqlDB(name string) HelmApp {
Chart: "mysql",
RepoName: helm.BitnamiRepoName,
Values: map[string]string{
"auth.rootPassword": "mysecretpassword",
"image.pullPolicy": "Always",
"auth.usePasswordFiles": "false",
"auth.rootPassword": "mysecretpassword",
"image.pullPolicy": "Always",
},
Version: "12.2.4",
},
}
}
Expand Down

0 comments on commit b7f523a

Please sign in to comment.