Skip to content

Commit

Permalink
update config mariadb 18.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmitrii.Mashkov committed Jun 16, 2024
1 parent ff0242d commit 376e467
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions cluster-bootstrap/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -53,27 +53,27 @@ resource "helm_release" "grafana" {
file("${path.module}/helm-values/grafana.yaml")
]
}
# resource "helm_release" "mariadb" {
# name = "mariadb"
# repository = "https://charts.bitnami.com/bitnami"
# chart = "mariadb"
# version = "18.0.2"
# namespace = "mariadb"
# create_namespace = true
# wait = true
# wait_for_jobs = true
# set {
# name = "persistence.size"
# value = "10Gi"
# }
# set {
# name = "auth.rootPassword"
# value = "admin"
# }
# values = [
# file("${path.module}/helm-values/mariadb.yaml")
# ]
# }
resource "helm_release" "mariadb" {
name = "mariadb"
repository = "https://charts.bitnami.com/bitnami"
chart = "mariadb"
version = "18.0.2"
namespace = "mariadb"
create_namespace = true
wait = true
wait_for_jobs = true
set {
name = "persistence.size"
value = "10Gi"
}
set {
name = "auth.rootPassword"
value = "admin"
}
values = [
file("${path.module}/helm-values/mariadb.yaml")
]
}

resource "helm_release" "nfs" {
name = "nfs"
Expand Down

0 comments on commit 376e467

Please sign in to comment.