We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f5bf6f commit 5438185Copy full SHA for 5438185
content/knowledge-base/integrations/argo-cd-crossplane.md
@@ -133,7 +133,9 @@ data:
133
"Composition",
134
"CompositionRevision",
135
"DeploymentRuntimeConfig",
136
- "ControllerConfig"
+ "ControllerConfig",
137
+ "ProviderConfig",
138
+ "ProviderConfigUsage"
139
}
140
if obj.status == nil and contains(has_no_status, obj.kind) then
141
health_status.status = "Healthy"
@@ -142,6 +144,11 @@ data:
142
144
end
143
145
146
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
152
return health_status
153
154
0 commit comments