14 lines
422 B
Text
14 lines
422 B
Text
# vim:expandtab:
|
|
local argoapp = import "../../../_templates/argo_app.template";
|
|
local vars = import "prometheus_vars";
|
|
|
|
[
|
|
argoapp + {
|
|
name:: "prometheus-crds",
|
|
namespace:: vars.namespace,
|
|
repo:: "https://github.com/prometheus-community/helm-charts.git",
|
|
path:: "charts/kube-prometheus-stack/crds/",
|
|
version:: "kube-prometheus-stack-" + vars.version,
|
|
syncOptions:: ["CreateNamespace=true", "Replace=true"]
|
|
}
|
|
]
|