refactor code
Deploy Proxmox Infra / Pulumi Preview (pull_request) Successful in 1m20s
Deploy Proxmox Infra / Pulumi Deploy (pull_request) Has been skipped
Deploy k8s Infra / Pulumi Preview (pull_request) Successful in 48s
Deploy k8s Infra / Pulumi Deploy (pull_request) Has been skipped
Deploy k8s Apps / Pulumi Preview (pull_request) Successful in 42s
Deploy k8s Apps / Pulumi Deploy (pull_request) Has been skipped
Deploy Monitoring / Pulumi Preview (pull_request) Successful in 49s
Deploy Monitoring / Pulumi Deploy (pull_request) Has been skipped

This commit is contained in:
2026-06-12 18:33:09 +02:00
parent 13549a8d37
commit 6753be7f09
5 changed files with 22 additions and 18 deletions
+2 -2
View File
@@ -16,7 +16,7 @@ const grafanaAdminPassword = config.requireSecret("grafanaAdminPassword");
const k8sProvider = new k8s.Provider("k3s", { kubeconfig });
const ns = new k8s.core.v1.Namespace(
const monitoringNs = new k8s.core.v1.Namespace(
"monitoring",
{ metadata: { name: "monitoring" } },
{ provider: k8sProvider, import: "monitoring" },
@@ -30,7 +30,7 @@ new k8s.helm.v3.Release(
name: "kube-prometheus-stack",
chart: "kube-prometheus-stack",
version: "86.2.0",
namespace: ns.metadata.name,
namespace: monitoringNs.metadata.name,
repositoryOpts: {
repo: "https://prometheus-community.github.io/helm-charts",
},