Fix go imports
This commit is contained in:
parent
a2009484f7
commit
004d0c8214
8 changed files with 22 additions and 18 deletions
|
|
@ -21,11 +21,11 @@ import (
|
|||
"fmt"
|
||||
"os/exec"
|
||||
|
||||
"k8s.io/api/core/v1"
|
||||
corev1 "k8s.io/api/core/v1"
|
||||
)
|
||||
|
||||
// Logs returns the log entries of a given Pod.
|
||||
func Logs(pod *v1.Pod) (string, error) {
|
||||
func Logs(pod *corev1.Pod) (string, error) {
|
||||
var (
|
||||
execOut bytes.Buffer
|
||||
execErr bytes.Buffer
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue