diff --git a/plugins/plugin-kubectl/src/lib/view/modes/Events.tsx b/plugins/plugin-kubectl/src/lib/view/modes/Events.tsx index 12b43a3ad3a..1beec7a295e 100644 --- a/plugins/plugin-kubectl/src/lib/view/modes/Events.tsx +++ b/plugins/plugin-kubectl/src/lib/view/modes/Events.tsx @@ -41,7 +41,7 @@ function hasEvents(resource: KubeResource): boolean { */ function command(_, resource: KubeResource, args: { argvNoOptions: string[]; parsedOptions: ParsedOptions }) { // limit events to those intersecting with the giving resource - const filter = `involvedObject.apiVersion=${resource.apiVersion},involvedObject.kind=${resource.kind},involvedObject.name=${resource.metadata.name},involvedObject.namespace=${resource.metadata.namespace}` + const filter = `involvedObject.apiVersion=${resource.apiVersion},involvedObject.kind=${resource.kind},involvedObject.name=${resource.metadata.name},involvedObject.namespace=${resource.metadata.namespace},involvedObject.resourceVersion=${resource.metadata.resourceVersion}` // this is the command that will fetch the events table; we specify a watchable table const argv = [