mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
[POSTGRES] Storage class set
This commit is contained in:
parent
51256e8bbb
commit
28960f2dc1
1 changed files with 7 additions and 0 deletions
|
|
@ -41,12 +41,19 @@ resource "helm_release" "postgresql" {
|
|||
values = [
|
||||
yamlencode({
|
||||
global = {
|
||||
storageClass = "local-path"
|
||||
postgresql = {
|
||||
auth = {
|
||||
existingSecret = "postgres-auth-secret"
|
||||
}
|
||||
}
|
||||
}
|
||||
primary = {
|
||||
persistence = {
|
||||
enabled = true
|
||||
storageClass = "local-path"
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue