File tree 3 files changed +13
-5
lines changed
3 files changed +13
-5
lines changed Original file line number Diff line number Diff line change @@ -17,10 +17,12 @@ environments:
17
17
memory : 256Mi
18
18
_rawValues : {}
19
19
argocd :
20
+ controllerStatusProcessors : 20
21
+ controllerOperationProcessors : 10
20
22
applicationSet :
21
23
replicas : 1
22
24
controller :
23
- replicas : 2
25
+ replicas : 1
24
26
autoscaling :
25
27
repoServer :
26
28
enabled : true
@@ -38,10 +40,10 @@ environments:
38
40
controller :
39
41
requests :
40
42
cpu : 200m
41
- memory : 512Mi
43
+ memory : 1Gi
42
44
limits :
43
45
cpu : " 2"
44
- memory : 2Gi
46
+ memory : 4Gi
45
47
server :
46
48
requests :
47
49
cpu : 100m
Original file line number Diff line number Diff line change @@ -1518,6 +1518,12 @@ properties:
1518
1518
properties :
1519
1519
_rawValues :
1520
1520
$ref : ' #/definitions/rawValues'
1521
+ controllerStatusProcessors :
1522
+ default : 20
1523
+ type : integer
1524
+ controllerOperationProcessors :
1525
+ default : 10
1526
+ type : integer
1521
1527
applicationSet :
1522
1528
replicas :
1523
1529
default : 1
Original file line number Diff line number Diff line change @@ -127,9 +127,9 @@ configs:
127
127
params:
128
128
server.insecure: true # nginx terminates tls
129
129
# -- Number of application status processors
130
- controller.status.processors: 10
130
+ controller.status.processors: {{ $a.controllerStatusProcessors }}
131
131
# -- Number of application operation processors
132
- controller.operation.processors: 5
132
+ controller.operation.processors: {{ $a.controllerOperationProcessors }}
133
133
134
134
rbac:
135
135
policy.csv: |
You can’t perform that action at this time.
0 commit comments