mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-03 13:30:57 +07:00
Install Prometheus stack
This commit is contained in:
parent
71431620cb
commit
3df5d4cc5b
@ -67,3 +67,13 @@ resource "helm_release" "metallb" {
|
||||
EOT
|
||||
}
|
||||
}
|
||||
|
||||
resource "helm_release" "prometheus" {
|
||||
name = "kube-prometheus-stack"
|
||||
repository = "https://prometheus-community.github.io/helm-charts"
|
||||
chart = "kube-prometheus-stack"
|
||||
version = "11.1.2"
|
||||
|
||||
namespace = "monitoring-system"
|
||||
create_namespace = true
|
||||
}
|
||||
|
@ -16,6 +16,11 @@ terraform {
|
||||
version = "1.1.3"
|
||||
}
|
||||
|
||||
kubernetes = {
|
||||
source = "hashicorp/kubernetes"
|
||||
version = "1.13.3"
|
||||
}
|
||||
|
||||
helm = {
|
||||
source = "hashicorp/helm"
|
||||
version = "1.3.2"
|
||||
|
Loading…
Reference in New Issue
Block a user