You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/modules/ROOT/pages/references/parameters.adoc
+44-2Lines changed: 44 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ default:: ${facts:distribution}
19
19
20
20
The Kubernetes distribution of the cluster.
21
21
22
-
=== `resync_time`
22
+
== `resync_time`
23
23
24
24
[horizontal]
25
25
type:: string
@@ -28,13 +28,55 @@ default:: `3m0s`
28
28
Resync interval.
29
29
Lower values mean quicker sync but higher CPU usage and more Git traffic.
30
30
31
-
=== `ssh_known_hosts`
31
+
== `ssh_known_hosts`
32
32
33
33
[horizontal]
34
34
type:: string
35
35
36
36
SSH known hosts for Git servers.
37
37
38
+
39
+
== `resource_exclusions`
40
+
41
+
[horizontal]
42
+
type:: dictionary(list|dictionary)
43
+
default::
44
+
+
45
+
[source,yaml]
46
+
----
47
+
cilium:
48
+
- apiGroups:
49
+
- cilium.io
50
+
kinds:
51
+
- CiliumIdentity
52
+
clusters:
53
+
- "*"
54
+
----
55
+
example::
56
+
+
57
+
[source,yaml]
58
+
----
59
+
custom:
60
+
- apiGroups:
61
+
- custom.io
62
+
kinds:
63
+
- ClusterWrecker
64
+
clusters:
65
+
- "*"
66
+
backup: null
67
+
----
68
+
69
+
A dictionary of resource exclusions for the ArgoCD instance.
70
+
Those resources will not be managed by ArgoCD.
71
+
72
+
The keys are the names of the exclusion groups.
73
+
Keys are not used, they are exclusively for hierarchical structuring.
74
+
75
+
The values are lists of resource definitions that should be excluded from the ArgoCD instance.
76
+
Those lists get concatenated.
77
+
78
+
Check https://argo-cd.readthedocs.io/en/stable/user-guide/resource_tracking/#additional-tracking-methods-via-an-annotation[ArgoCD documentation] for more information.
0 commit comments