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
CiliumIdentity (https://doc.crds.dev/github.com/cilium/cilium/cilium.io/CiliumIdentity/v2) resources are completely managed by Cilium but copy labels from the resources they refer to. Cilium uses them as a KV store.
This commit stops ArgoCD from purging the resources instantly after creation.
Copy file name to clipboardExpand all lines: docs/modules/ROOT/pages/references/parameters.adoc
+42Lines changed: 42 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -35,6 +35,48 @@ 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