Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion util/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ func getContainerLogs(
DoRaw(context.TODO())
}

// GetPodEvents retrieves the events for a specific pod
func GetPodEvents(
c kubernetes.Interface,
name,
Expand All @@ -132,7 +133,7 @@ func GetNodes(c kubernetes.Interface) (*v1.NodeList, error) {
List(context.TODO(), metav1.ListOptions{})
}

// // GetNodeSummary gets a list of nodes
// GetNodeSummary gets a list of nodes
func GetNodeSummary(c kubernetes.Interface, name string) ([]byte, error) {
return c.CoreV1().
RESTClient().
Expand Down