Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Manager ¶
type Manager interface { CreateAndWaitTillPodIsRunning(context context.Context, pod *v1.Pod, timeOut time.Duration) (*v1.Pod, error) CreateAndWaitTillPodIsCompleted(context context.Context, pod *v1.Pod) (*v1.Pod, error) DeleteAndWaitTillPodIsDeleted(context context.Context, pod *v1.Pod) error GetPodsWithLabel(context context.Context, namespace string, labelKey string, labelValue string) ([]v1.Pod, error) PatchPod(context context.Context, oldPod *v1.Pod, newPod *v1.Pod) error PodLogs(namespace string, name string) (string, error) }
func NewManager ¶
func NewManager(k8sClient client.Client, k8sclientSet *kubernetes.Clientset) Manager
Click to show internal directories.
Click to hide internal directories.