baseline/manifests/reloader.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
223 B
Text

local app = import "../_templates/argocd_app.libsonnet";
[
app + {
chart:: "reloader",
repo:: "https://stakater.github.io/stakater-charts",
version:: "v1.0.*",
values:: |||
fullnameOverride: reloader
|||
}
]