FORMAT: use jsonnet for templating

* add jsonnet templates
* rewrite all charts to jsonnet
This commit is contained in:
Sebastian Mark 2022-04-04 18:24:35 +02:00
parent bf2aa26963
commit e2fe9bb682
19 changed files with 244 additions and 237 deletions

View file

@ -0,0 +1,13 @@
# vim:expandtab:
local helmapp = import "../_templates/argo_helm_app.template";
[
helmapp + {
name:: "cert-manager",
repo:: "https://charts.jetstack.io",
version:: "v1.7.2",
values:: |||
installCRDs: true
|||
},
]