Skip to content

Commit

Permalink
added patch to reduce refresh interval (#13)
Browse files Browse the repository at this point in the history
* added patch to reduce refresh interval
* updated version to 0.0.18
  • Loading branch information
ATGardner authored Jun 24, 2021
1 parent 95225cf commit e19ac95
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION=v0.0.17
VERSION=v0.0.18
OUT_DIR=dist
YEAR?=$(shell date +"%Y")

Expand Down
26 changes: 26 additions & 0 deletions manifests/argo-cd/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,29 @@ kind: Kustomization
resources:
- https://raw.githubusercontent.com/argoproj/argo-cd/v2.0.4/manifests/install.yaml
- https://raw.githubusercontent.com/argoproj-labs/applicationset/master/manifests/install.yaml # TODO: switch to the next release when available
# will be effective on argo-cd 2.1
configMapGenerator:
- name: argocd-cm
behavior: merge
literals:
- "timeout.reconciliation=5s"
# currently in use since we are on 2.0.4
patches:
- patch: |-
apiVersion: apps/v1
kind: StatefulSet
metadata:
name: argocd-application-controller
spec:
template:
spec:
containers:
- name: argocd-application-controller
command:
- argocd-application-controller
- --status-processors
- "20"
- --operation-processors
- "10"
- --app-resync
- "5"

0 comments on commit e19ac95

Please sign in to comment.