@@ -18,7 +18,7 @@ resource "helm_release" "prometheus" {
1818 name = " prometheus"
1919 repository = local. helm_repository . prometheus
2020 chart = " prometheus"
21- version = " 15.8.4 "
21+ version = " 15.10.5 "
2222 namespace = kubernetes_namespace. cluster_utilities_namespace . id
2323 wait = false
2424
@@ -37,7 +37,7 @@ resource "helm_release" "grafana" {
3737 name = " mushop-utils-grafana" # mushop-utils included to be backwards compatible to the docs and setup chart install
3838 repository = local. helm_repository . grafana
3939 chart = " grafana"
40- version = " 6.26.3 "
40+ version = " 6.32.5 "
4141 namespace = kubernetes_namespace. cluster_utilities_namespace . id
4242 wait = false
4343
@@ -116,7 +116,7 @@ resource "helm_release" "ingress_nginx" {
116116 name = " mushop-utils-ingress-nginx" # mushop-utils included to be backwards compatible to the docs and setup chart install
117117 repository = local. helm_repository . ingress_nginx
118118 chart = " ingress-nginx"
119- version = " 4.0.19 "
119+ version = " 4.2.0 "
120120 namespace = kubernetes_namespace. cluster_utilities_namespace . id
121121 wait = true
122122
@@ -148,26 +148,15 @@ resource "helm_release" "ingress_nginx" {
148148}
149149
150150# # https://github.com/kubernetes-sigs/service-catalog/blob/master/charts/catalog/README.md
151- resource "helm_release" "svc-cat" {
152- name = " svc-cat"
153- repository = local. helm_repository . svc_catalog
154- chart = " catalog"
155- version = " 0.3.1"
156- namespace = kubernetes_namespace. cluster_utilities_namespace . id
157- wait = false
158-
159- depends_on = [helm_release . ingress_nginx ] # Ugly workaround because of the oci pvc provisioner not be able to wait for the node be active and retry.
160-
161- count = var. catalog_enabled ? 1 : 0
162- }
151+ # # *** Service Catalog removed. Project retired ***
163152
164153# # https://github.com/jetstack/cert-manager/blob/master/README.md
165154# # https://artifacthub.io/packages/helm/cert-manager/cert-manager
166155resource "helm_release" "cert_manager" {
167156 name = " cert-manager"
168157 repository = local. helm_repository . jetstack
169158 chart = " cert-manager"
170- version = " 1.8.0 "
159+ version = " 1.8.2 "
171160 namespace = kubernetes_namespace. cluster_utilities_namespace . id
172161 wait = true # wait to allow the webhook be properly configured
173162
@@ -213,7 +202,6 @@ locals {
213202 helm_repository = {
214203 ingress_nginx = " https://kubernetes.github.io/ingress-nginx"
215204 jetstack = " https://charts.jetstack.io" # cert-manager
216- svc_catalog = " https://kubernetes-sigs.github.io/service-catalog" # Service Catalog
217205 grafana = " https://grafana.github.io/helm-charts"
218206 prometheus = " https://prometheus-community.github.io/helm-charts"
219207 metrics_server = " https://kubernetes-sigs.github.io/metrics-server"
0 commit comments