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 6b8876e commit 5c7bcd9Copy full SHA for 5c7bcd9
pkg/component/component.go
@@ -182,6 +182,11 @@ func (s *RetrySpec) GetRetryInterval() time.Duration {
182
return time.Duration(0)
183
}
184
185
+// Check if state is Ready.
186
+func (s *Status) IsReady() bool {
187
+ return s.State == StateReady
188
+}
189
+
190
// Get state (and related details).
191
func (s *Status) GetState() (State, string, string) {
192
var cond *Condition
0 commit comments