A ConditionedObject is a runtime object with conditions.
| 33 | |
| 34 | // A ConditionedObject is a runtime object with conditions. |
| 35 | type ConditionedObject interface { |
| 36 | resource.Object |
| 37 | resource.Conditioned |
| 38 | } |
| 39 | |
| 40 | // IsReady returns whether the composed resource is ready. |
| 41 | func IsReady(_ context.Context, o ConditionedObject, rc ...v1beta1.ReadinessCheck) (bool, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected