Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
moklidia committed Nov 21, 2022
2 parents 853d552 + 3df43f2 commit 5a4efab
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions internal/clients/kuber/pods.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,10 @@ func (client *Client) GetPodLogs(
previous bool,
) ([]string, error) {
logOptions := &v1.PodLogOptions{
Container: containerName,
TailLines: &limit,
Previous: previous,
Previous: previous,
Container: containerName,
TailLines: &limit,
Timestamps: true,
}

request := client.clientset.CoreV1().Pods(namespace).GetLogs(podName, logOptions)
Expand Down

0 comments on commit 5a4efab

Please # to comment.