Skip to content

Commit e19ac95

Browse files
authored
added patch to reduce refresh interval (#13)
* added patch to reduce refresh interval * updated version to 0.0.18
1 parent 95225cf commit e19ac95

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION=v0.0.17
1+
VERSION=v0.0.18
22
OUT_DIR=dist
33
YEAR?=$(shell date +"%Y")
44

manifests/argo-cd/kustomization.yaml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,29 @@ kind: Kustomization
33
resources:
44
- https://raw.githubusercontent.com/argoproj/argo-cd/v2.0.4/manifests/install.yaml
55
- https://raw.githubusercontent.com/argoproj-labs/applicationset/master/manifests/install.yaml # TODO: switch to the next release when available
6+
# will be effective on argo-cd 2.1
7+
configMapGenerator:
8+
- name: argocd-cm
9+
behavior: merge
10+
literals:
11+
- "timeout.reconciliation=5s"
12+
# currently in use since we are on 2.0.4
13+
patches:
14+
- patch: |-
15+
apiVersion: apps/v1
16+
kind: StatefulSet
17+
metadata:
18+
name: argocd-application-controller
19+
spec:
20+
template:
21+
spec:
22+
containers:
23+
- name: argocd-application-controller
24+
command:
25+
- argocd-application-controller
26+
- --status-processors
27+
- "20"
28+
- --operation-processors
29+
- "10"
30+
- --app-resync
31+
- "5"

0 commit comments

Comments
 (0)