REFACTOR: merge templates into one

This commit is contained in:
Sebastian Mark 2022-04-16 10:13:51 +02:00
parent 1953320691
commit 80e517c656
10 changed files with 99 additions and 105 deletions

View file

@ -1,6 +1,5 @@
# see https://blog.ediri.io/kube-prometheus-stack-and-argocd-23-how-to-remove-a-workaround
local helmapp = import "../../_templates/argo_helm_app.libsonnet";
local argoapp = import "../../_templates/argo_app.libsonnet";
local app = import "../../_templates/argocd_app.libsonnet";
local vars = {
"version": "34.10.0",
@ -8,20 +7,20 @@ local vars = {
};
[
argoapp + {
app + {
name:: "prometheus-crds",
namespace:: vars.namespace,
repo:: "https://github.com/prometheus-community/helm-charts.git",
path:: "charts/kube-prometheus-stack/crds/",
repo:: "https://github.com/prometheus-community/helm-charts.git",
version:: "kube-prometheus-stack-" + vars.version,
syncOptions:: ["CreateNamespace=true", "Replace=true"],
sync_wave:: -1,
},
helmapp + {
app + {
name:: "prometheus-grafana",
namespace: vars.namespace,
repo:: "https://prometheus-community.github.io/helm-charts",
chart:: "kube-prometheus-stack",
repo:: "https://prometheus-community.github.io/helm-charts",
version:: vars.version,
skipCrds:: true,
values:: |||