@@ -6,20 +6,20 @@ controller:
6
6
annotations :
7
7
prometheus.io/scrape : true
8
8
env :
9
- - name : ARGOCD_K8S_CLIENT_QPS # required for Crossplane too many CRDs https://github.com/argoproj/argo-cd/pull/448
10
- value : " 300"
9
+ - name : ARGOCD_K8S_CLIENT_QPS # required for Crossplane too many CRDs https://github.com/argoproj/argo-cd/pull/448
10
+ value : ' 300'
11
11
12
12
repoServer :
13
13
autoscaling :
14
14
enabled : true
15
15
minReplicas : 1
16
16
resources : # Adjust based on your specific use case (required for HPA)
17
17
requests :
18
- cpu : " 100m"
19
- memory : " 256Mi"
18
+ cpu : ' 100m'
19
+ memory : ' 256Mi'
20
20
limits :
21
- cpu : " 200m"
22
- memory : " 512Mi"
21
+ cpu : ' 200m'
22
+ memory : ' 512Mi'
23
23
metrics :
24
24
enabled : true
25
25
service :
@@ -40,18 +40,21 @@ server:
40
40
minReplicas : 1
41
41
resources : # Adjust based on your specific use case (required for HPA)
42
42
requests :
43
- cpu : " 100m"
44
- memory : " 256Mi"
43
+ cpu : ' 100m'
44
+ memory : ' 256Mi'
45
45
limits :
46
- cpu : " 200m"
47
- memory : " 512Mi"
46
+ cpu : ' 200m'
47
+ memory : ' 512Mi'
48
48
metrics :
49
49
enabled : true
50
50
service :
51
51
annotations :
52
52
prometheus.io/scrape : true
53
53
service :
54
54
type : LoadBalancer
55
+ annotations :
56
+ service.beta.kubernetes.io/aws-load-balancer-nlb-target-type : ip
57
+ service.beta.kubernetes.io/aws-load-balancer-scheme : internet-facing
55
58
56
59
configs :
57
60
repositories :
@@ -60,9 +63,9 @@ configs:
60
63
name : aws-public-ecr
61
64
type : helm
62
65
url : public.ecr.aws
63
- enableOCI : " true"
66
+ enableOCI : ' true'
64
67
cm :
65
- application.resourceTrackingMethod : " annotation" # use annotation for tracking required for Crossplane
68
+ application.resourceTrackingMethod : ' annotation' # use annotation for tracking required for Crossplane
66
69
resource.exclusions : |
67
70
- kinds:
68
71
- ProviderConfigUsage
@@ -186,7 +189,6 @@ configs:
186
189
187
190
return health_status
188
191
189
-
190
192
# -- Array of extra K8s manifests to deploy
191
193
# # Note: Supports use of custom Helm templates
192
194
# # It gets handle in this form inside the argo-cd chart
@@ -199,21 +201,21 @@ configs:
199
201
# {{- end }}
200
202
# {{ end }}
201
203
extraObjects :
202
- - |
203
- apiVersion: argoproj.io/v1alpha1
204
- kind: AppProject
205
- metadata:
206
- name: default
207
- namespace: {{ $.Release.Namespace | quote }}
208
- annotations:
209
- source: gitops-brige
210
- spec:
211
- clusterResourceWhitelist:
212
- - group: '*'
213
- kind: '*'
214
- sourceRepos:
215
- - '*'
216
- destinations:
217
- - namespace: '*'
218
- name: '*'
219
- server: '*'
204
+ - |
205
+ apiVersion: argoproj.io/v1alpha1
206
+ kind: AppProject
207
+ metadata:
208
+ name: default
209
+ namespace: {{ $.Release.Namespace | quote }}
210
+ annotations:
211
+ source: gitops-brige
212
+ spec:
213
+ clusterResourceWhitelist:
214
+ - group: '*'
215
+ kind: '*'
216
+ sourceRepos:
217
+ - '*'
218
+ destinations:
219
+ - namespace: '*'
220
+ name: '*'
221
+ server: '*'
0 commit comments