[POSTGRES] Storage class set

This commit is contained in:
Kat Inskip 2023-05-01 12:24:35 -07:00
parent 51256e8bbb
commit 28960f2dc1
Signed by: kat
GPG key ID: 465E64DECEA8CF0F

View file

@ -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"
}
}
}) })
] ]