Skip to content

Commit 5438185

Browse files
fix: add missing conditional for ignore Diffs (#734)
Signed-off-by: Henrique Oliveira <[email protected]>
1 parent 5f5bf6f commit 5438185

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

content/knowledge-base/integrations/argo-cd-crossplane.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,9 @@ data:
133133
"Composition",
134134
"CompositionRevision",
135135
"DeploymentRuntimeConfig",
136-
"ControllerConfig"
136+
"ControllerConfig",
137+
"ProviderConfig",
138+
"ProviderConfigUsage"
137139
}
138140
if obj.status == nil and contains(has_no_status, obj.kind) then
139141
health_status.status = "Healthy"
@@ -142,6 +144,11 @@ data:
142144
end
143145
144146
if obj.status == nil or obj.status.conditions == nil then
147+
if obj.kind == "ProviderConfig" and obj.status.users ~= nil then
148+
health_status.status = "Healthy"
149+
health_status.message = "Resource is in use."
150+
return health_status
151+
end
145152
return health_status
146153
end
147154

0 commit comments

Comments
 (0)