baseline/k8s-manifests/cert-manager.jsonnet
Sebastian Mark e2fe9bb682 FORMAT: use jsonnet for templating
* add jsonnet templates
* rewrite all charts to jsonnet
2022-04-09 15:41:17 +02:00

13 lines
229 B
Text

# 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
|||
},
]