baseline/manifests/cert-manager/cert-manager.jsonnet
Sebastian Mark 73a451ff97 refactor: rename k8s-manifests directory to manifests
- Rename all `k8s-manifests` subdirectories and files to `manifests`
- Update all file paths in `argocd-init.yml` to reflect the new directory name

🤖
2023-08-02 23:13:04 +02:00

12 lines
204 B
Text

local app = import "../_templates/argocd_app.libsonnet";
[
app + {
chart:: "cert-manager",
repo:: "https://charts.jetstack.io",
version:: "v1.12.*",
values:: |||
installCRDs: true
|||
},
]