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 227d987 commit 37fa23fCopy full SHA for 37fa23f
apiconnect_net.py
@@ -48,6 +48,7 @@ def fish(self):
48
'v1beta1',
49
customResource['plural'])
50
for item in api_response['items']:
51
+ version = item['status']['versions']['reconciled']
52
for condition in item['status']['conditions']:
53
if condition['type'] == 'Ready':
54
if condition['status']:
@@ -60,6 +61,7 @@ def fish(self):
60
61
health,
62
labels={
63
"component": "{}_{}".format(customResource['plural'][:-1], item['metadata']['name']),
64
+ "version": version,
65
**self.health_label
66
})
67
0 commit comments