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

🤖
This commit is contained in:
Sebastian Mark 2023-08-02 09:48:06 +02:00
parent 1f791c2c8c
commit 73a451ff97
11 changed files with 1 additions and 1 deletions

13
manifests/keel.jsonnet Normal file
View file

@ -0,0 +1,13 @@
local app = import "../_templates/argocd_app.libsonnet";
[
app + {
chart:: "keel",
repo:: "https://charts.keel.sh",
version:: "1.0.*",
values:: |||
helmProvider:
enabled: false
|||
}
]