add import-alias for k8s.io/api/core/v1

This commit is contained in:
Aaron Crickenberger
2019-06-20 11:40:15 -07:00
parent f3fd3cff8e
commit b8d0ce4019
23 changed files with 305 additions and 304 deletions

View File

@@ -19,7 +19,7 @@ package workloads
import (
"time"
corev1 "k8s.io/api/core/v1"
v1 "k8s.io/api/core/v1"
kubeletconfig "k8s.io/kubernetes/pkg/kubelet/apis/config"
)
@@ -29,7 +29,7 @@ type NodePerfWorkload interface {
// Name of the workload.
Name() string
// PodSpec used to run this workload.
PodSpec() corev1.PodSpec
PodSpec() v1.PodSpec
// Timeout provides the expected time to completion
// for this workload.
Timeout() time.Duration