kubectl

package
v1.17.0-beta35 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 4, 2024 License: Apache-2.0 Imports: 13 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Cli

type Cli struct {
	// contains filtered or unexported fields
}

Cli is a utility for executing `kubectl` commands

func NewCli

func NewCli() *Cli

NewCli returns an implementation of the kubectl.Cli

func (*Cli) Apply

func (c *Cli) Apply(ctx context.Context, content []byte, extraArgs ...string) error

Apply applies the resources defined in the bytes, and returns an error if one occurred

func (*Cli) ApplyFile

func (c *Cli) ApplyFile(ctx context.Context, fileName string, extraArgs ...string) error

ApplyFile applies the resources defined in a file, and returns an error if one occurred

func (*Cli) ApplyFileWithOutput

func (c *Cli) ApplyFileWithOutput(ctx context.Context, fileName string, extraArgs ...string) (string, error)

ApplyFileWithOutput applies the resources defined in a file, if an error occurred, it will be returned along with the output of the command

func (*Cli) Command

func (c *Cli) Command(ctx context.Context, args ...string) cmdutils.Cmd

Command returns a Cmd that executes kubectl command, including the --context if it is defined The Cmd sets the Stdout and Stderr to the receiver of the Cli

func (*Cli) Copy

func (c *Cli) Copy(ctx context.Context, from, to string) error

Copy copies a file from one location to another

func (*Cli) CurlFromEphemeralPod

func (c *Cli) CurlFromEphemeralPod(ctx context.Context, podMeta types.NamespacedName, options ...curl.Option) string

CurlFromEphemeralPod executes a Curl from a pod, using an ephemeral container to execute the Curl command

func (*Cli) CurlFromPod

func (c *Cli) CurlFromPod(ctx context.Context, podOpts PodExecOptions, options ...curl.Option) (string, error)

CurlFromPod executes a Curl request from the given pod for the given options. It differs from CurlFromEphemeralPod in that it does not uses an ephemeral container to execute the Curl command

func (*Cli) Delete

func (c *Cli) Delete(ctx context.Context, content []byte, extraArgs ...string) error

Delete deletes the resources defined in the bytes, and returns an error if one occurred

func (*Cli) DeleteFile

func (c *Cli) DeleteFile(ctx context.Context, fileName string, extraArgs ...string) error

DeleteFile deletes the resources defined in a file, and returns an error if one occurred

func (*Cli) DeleteFileSafe

func (c *Cli) DeleteFileSafe(ctx context.Context, fileName string, extraArgs ...string) error

DeleteFileSafe deletes the resources defined in a file, and returns an error if one occurred This differs from DeleteFile in that we always append --ignore-not-found

func (*Cli) DeleteFileWithOutput

func (c *Cli) DeleteFileWithOutput(ctx context.Context, fileName string, extraArgs ...string) (string, error)

DeleteFileWithOutput deletes the resources defined in a file, if an error occurred, it will be returned along with the output of the command

func (*Cli) DeploymentRolloutStatus

func (c *Cli) DeploymentRolloutStatus(ctx context.Context, deployment string, extraArgs ...string) error

DeploymentRolloutStatus waits for the deployment to complete rolling out

func (*Cli) Execute

func (c *Cli) Execute(ctx context.Context, stdin *bytes.Buffer, args ...string) (string, string, error)

func (*Cli) ExecuteOn

func (c *Cli) ExecuteOn(ctx context.Context, kubeContext string, stdin *bytes.Buffer, args ...string) (string, string, error)

func (*Cli) RunCommand

func (c *Cli) RunCommand(ctx context.Context, args ...string) error

RunCommand creates a Cmd and then runs it

func (*Cli) StartPortForward

func (c *Cli) StartPortForward(ctx context.Context, options ...portforward.Option) (portforward.PortForwarder, error)

StartPortForward creates a PortForwarder based on the provides options, starts it, and returns the PortForwarder If an error was encountered while starting the PortForwarder, it is returned as well NOTE: It is the callers responsibility to close this port-forward

func (*Cli) WithKubeContext

func (c *Cli) WithKubeContext(kubeContext string) *Cli

WithKubeContext sets the --context for the kubectl command invoked by the Cli

func (*Cli) WithReceiver

func (c *Cli) WithReceiver(receiver io.Writer) *Cli

WithReceiver sets the io.Writer that will be used by default for the stdout and stderr of cmdutils.Cmd created by the Cli

type PodExecOptions

type PodExecOptions struct {
	Name      string
	Namespace string
	Container string
}

PodExecOptions describes the options used to execute a command in a pod

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL