Skip to content

Commit

Permalink
Collect logs from optional Korifi controllers
Browse files Browse the repository at this point in the history
fixes #3721
  • Loading branch information
danail-branekov committed Jan 17, 2025
1 parent 7907864 commit 9daf1ee
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions tests/helpers/fail_handler/pods.go
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,24 @@ func PrintKorifiLogs(config *rest.Config, correlationId string, since time.Time)
LabelValue: "korifi-controllers",
Since: tools.PtrTo(metav1.NewTime(since)),
},
{
Namespace: "korifi",
LabelKey: "app",
LabelValue: "kpack-image-builder",
Since: tools.PtrTo(metav1.NewTime(since)),
},
{
Namespace: "korifi",
LabelKey: "app",
LabelValue: "statefulset-runner",
Since: tools.PtrTo(metav1.NewTime(since)),
},
{
Namespace: "korifi",
LabelKey: "app",
LabelValue: "job-task-runner",
Since: tools.PtrTo(metav1.NewTime(since)),
},
})
}

Expand Down

0 comments on commit 9daf1ee

Please sign in to comment.