feat(argocd): configure git-age
All checks were successful
Renovate / renovate (push) Successful in 23s
All checks were successful
Renovate / renovate (push) Successful in 23s
This commit is contained in:
parent
620adbb16f
commit
4b0b068381
5 changed files with 19 additions and 0 deletions
1
argocd/.gitattributes
vendored
1
argocd/.gitattributes
vendored
|
@ -1 +1,2 @@
|
|||
**/values.*.yaml filter=age diff=age merge=age -text
|
||||
**/secret.*.yaml filter=age diff=age merge=age -text
|
||||
|
|
Binary file not shown.
|
@ -5,6 +5,8 @@ namespace: argo-system
|
|||
|
||||
resources:
|
||||
- resources/namespace.yaml
|
||||
- resources/secret.git-age.yaml
|
||||
- resources/configmap.git.yaml
|
||||
- resources/dragonfly.yml
|
||||
- resources/http_routes.yaml
|
||||
|
||||
|
|
16
argocd/resources/configmap.git.yaml
Normal file
16
argocd/resources/configmap.git.yaml
Normal 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
|
BIN
argocd/resources/secret.git-age.yaml
Normal file
BIN
argocd/resources/secret.git-age.yaml
Normal file
Binary file not shown.
Loading…
Reference in a new issue