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 1a43f17 commit ae22c37Copy full SHA for ae22c37
1 file changed
Tests/kaas/plugin/plugin_clusterstacks.py
@@ -30,7 +30,7 @@ def _get_condition_ready(self, co_api: _csh.CustomObjectsApi):
30
return bool([
31
cond
32
for cond in status.get('conditions', ())
33
- if cond.get('type', '').lower() == 'ready'
+ if cond.get('type', '').lower() in ('ready', 'available') # new Cluster API uses available
34
if cond.get('status', '').lower() == 'true'
35
])
36
0 commit comments