feat(argocd): configure git-age
All checks were successful
Renovate / renovate (push) Successful in 23s

This commit is contained in:
Peter 2024-04-26 10:19:53 +02:00
parent 620adbb16f
commit 4b0b068381
Signed by: prskr
GPG key ID: F56BED6903BC5E37
5 changed files with 19 additions and 0 deletions

View file

@ -1 +1,2 @@
**/values.*.yaml filter=age diff=age merge=age -text **/values.*.yaml filter=age diff=age merge=age -text
**/secret.*.yaml filter=age diff=age merge=age -text

Binary file not shown.

View file

@ -5,6 +5,8 @@ namespace: argo-system
resources: resources:
- resources/namespace.yaml - resources/namespace.yaml
- resources/secret.git-age.yaml
- resources/configmap.git.yaml
- resources/dragonfly.yml - resources/dragonfly.yml
- resources/http_routes.yaml - resources/http_routes.yaml

View file

@ -0,0 +1,16 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: git-config
data:
gitconfig: |
[filter "lfs"]
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
[filter "age"]
clean = git-age clean -- %f
smudge = git-age smudge -- %f
required = true

Binary file not shown.