mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29: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 = [
|
values = [
|
||||||
yamlencode({
|
yamlencode({
|
||||||
global = {
|
global = {
|
||||||
|
storageClass = "local-path"
|
||||||
postgresql = {
|
postgresql = {
|
||||||
auth = {
|
auth = {
|
||||||
existingSecret = "postgres-auth-secret"
|
existingSecret = "postgres-auth-secret"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
primary = {
|
||||||
|
persistence = {
|
||||||
|
enabled = true
|
||||||
|
storageClass = "local-path"
|
||||||
|
}
|
||||||
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
]
|
]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue