We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parente83b5db commit0013c7bCopy full SHA for 0013c7b
playbooks/robusta_playbooks/event_enrichments.py
@@ -265,10 +265,9 @@ def resource_events_diff(event: KubernetesAnyChangeEvent):
265
container_info= [ContainerInfo.get_container_info_k8(container)forcontainerin
266
containers]ifcontainerselse []
267
volumes_info= [VolumeInfo.get_volume_info(volume)forvolumeinvolumes]ifvolumeselse []
268
-config=ServiceConfig(labels=meta.labelsor {},containers=container_info,
269
-volumes=volumes_info)
270
-ready_pods=extract_total_pods(new_resource)
271
-total_pods=extract_ready_pods(new_resource)
+config=ServiceConfig(labels=meta.labelsor {},containers=container_info,volumes=volumes_info)
+ready_pods=extract_ready_pods(new_resource)
+total_pods=extract_total_pods(new_resource)
272
273
is_helm_release=is_release_managed_by_helm(annotations=new_resource.metadata.annotations,
274
labels=new_resource.metadata.labels)