cluster

package
v1.32.0 Latest Latest
Warning

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

Go to latest
Published: Nov 8, 2023 License: Apache-2.0 Imports: 32 Imported by: 94

Documentation

Index

Constants

View Source
const (
	// MountErrorUnknown failed with unknown error
	MountErrorUnknown = iota
	// MountErrorConnect failed to connect
	MountErrorConnect
	// MountErrorChmod failed to chmod
	MountErrorChmod
)

Variables

This section is empty.

Functions

func Bootstrapper added in v1.7.3

func Bootstrapper(api libmachine.API, bootstrapperName string, cc config.ClusterConfig, r command.Runner) (bootstrapper.Bootstrapper, error)

Bootstrapper returns a new bootstrapper for the cluster

func CheckIfPaused added in v1.19.0

func CheckIfPaused(cr cruntime.Manager, namespaces []string) (bool, error)

CheckIfPaused checks if the Kubernetes cluster is paused

func ControlPlaneBootstrapper added in v1.10.0

func ControlPlaneBootstrapper(mAPI libmachine.API, cc *config.ClusterConfig, bootstrapperName string) (bootstrapper.Bootstrapper, command.Runner, error)

ControlPlaneBootstrapper returns the bootstrapper for the cluster's control plane

func DriverIP added in v1.10.0

func DriverIP(api libmachine.API, machineName string) (net.IP, error)

DriverIP gets the ip address of the current minikube cluster

func HostIP added in v1.10.0

func HostIP(host *host.Host, clusterName string) (net.IP, error)

HostIP gets the ip address to be used for mapping host -> VM and VM -> host

func Mount added in v1.0.0

func Mount(r mountRunner, source string, target string, c *MountConfig, pid int) error

Mount runs the mount command from the 9p client on the VM to the 9p server on the host

func Pause added in v1.7.0

func Pause(cr cruntime.Manager, r command.Runner, namespaces []string) ([]string, error)

Pause pauses a Kubernetes cluster, retrying if necessary

func Unmount added in v1.0.0

func Unmount(r mountRunner, target string) error

Unmount unmounts a path

func Unpause added in v1.7.0

func Unpause(cr cruntime.Manager, r command.Runner, namespaces []string) ([]string, error)

Unpause unpauses a Kubernetes cluster, retrying if necessary

Types

type MountConfig added in v1.0.0

type MountConfig struct {
	// Type is the filesystem type (Typically 9p)
	Type string
	// UID is the User ID which this path will be mounted as
	UID string
	// GID is the Group ID which this path will be mounted as
	GID string
	// Version is the 9P protocol version. Valid options: 9p2000, 9p200.u, 9p2000.L
	Version string
	// MSize is the number of bytes to use for 9p packet payload
	MSize int
	// Port is the port to connect to on the host
	Port int
	// Extra mount options. See https://www.kernel.org/doc/Documentation/filesystems/9p.txt
	Options map[string]string
}

MountConfig defines the options available to the Mount command

type MountError added in v1.23.0

type MountError struct {
	// ErrorType enum for more info about the error
	ErrorType int
	// UnderlyingError the error being wrapped
	UnderlyingError error
}

MountError wrapper around errors in the `Mount` function

func (*MountError) Error added in v1.23.0

func (m *MountError) Error() string

Jump to

Keyboard shortcuts

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