Documentation ¶
Index ¶
- type KubeletExecutor
- func (k *KubeletExecutor) CopyFile(containerID string, sourcePath string, destPath string) error
- func (k *KubeletExecutor) GetFileContents(containerID string, sourcePath string) (string, error)
- func (k *KubeletExecutor) GetOutput(containerID string) (string, error)
- func (k *KubeletExecutor) Kill(containerIDs []string) error
- func (k *KubeletExecutor) Logs(containerID, path string) error
- func (k *KubeletExecutor) Wait(containerID string) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type KubeletExecutor ¶
type KubeletExecutor struct {
// contains filtered or unexported fields
}
func NewKubeletExecutor ¶
func NewKubeletExecutor() (*KubeletExecutor, error)
func (*KubeletExecutor) CopyFile ¶
func (k *KubeletExecutor) CopyFile(containerID string, sourcePath string, destPath string) error
func (*KubeletExecutor) GetFileContents ¶
func (k *KubeletExecutor) GetFileContents(containerID string, sourcePath string) (string, error)
func (*KubeletExecutor) GetOutput ¶
func (k *KubeletExecutor) GetOutput(containerID string) (string, error)
GetOutput returns the entirety of the container output as a string Used to capturing script results as an output parameter
func (*KubeletExecutor) Kill ¶
func (k *KubeletExecutor) Kill(containerIDs []string) error
Kill kills a list of containerIDs first with a SIGTERM then with a SIGKILL after a grace period
func (*KubeletExecutor) Logs ¶
func (k *KubeletExecutor) Logs(containerID, path string) error
Logs copies logs to a given path
func (*KubeletExecutor) Wait ¶
func (k *KubeletExecutor) Wait(containerID string) error
Wait for the container to complete
Click to show internal directories.
Click to hide internal directories.