docker

package
v4.4.8 Latest Latest
Warning

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

Go to latest
Published: Aug 25, 2021 License: MIT Imports: 34 Imported by: 2

Documentation

Overview

Copyright © 2020-2021 The k3d Author(s)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Copyright © 2020-2021 The k3d Author(s)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Copyright © 2020-2021 The k3d Author(s)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Copyright © 2020-2021 The k3d Author(s)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Copyright © 2020-2021 The k3d Author(s)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Copyright © 2020-2021 The k3d Author(s)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func CheckIfDirectoryExists added in v4.4.0

func CheckIfDirectoryExists(ctx context.Context, image string, dir string) (bool, error)

CheckIfDirectoryExists checks for the existence of a given path inside the docker environment

func GetDefaultObjectLabelsFilter

func GetDefaultObjectLabelsFilter(clusterName string) filters.Args

GetDefaultObjectLabelsFilter returns docker type filters created from k3d labels

func GetDockerClient added in v4.1.0

func GetDockerClient() (*client.Client, error)

GetDockerClient returns a docker client

func GetGatewayIP

func GetGatewayIP(ctx context.Context, network string) (net.IP, error)

GetGatewayIP returns the IP of the network gateway

func GetNetwork

func GetNetwork(ctx context.Context, ID string) (types.NetworkResource, error)

GetNetwork gets information about a network by its ID

func TranslateContainerDetailsToNode

func TranslateContainerDetailsToNode(containerDetails types.ContainerJSON) (*k3d.Node, error)

TranslateContainerDetailsToNode translates a docker containerJSON object into a k3d node representation

func TranslateContainerToNode

func TranslateContainerToNode(cont *types.Container) (*k3d.Node, error)

TranslateContainerToNode translates a docker container object into a k3d node representation

Types

type Docker

type Docker struct{}

func (Docker) ConnectNodeToNetwork

func (d Docker) ConnectNodeToNetwork(ctx context.Context, node *k3d.Node, networkName string) error

ConnectNodeToNetwork connects a node to a network

func (Docker) CopyToNode

func (d Docker) CopyToNode(ctx context.Context, src string, dest string, node *k3d.Node) error

CopyToNode copies a file from the local FS to the selected node

func (Docker) CreateNetworkIfNotPresent

func (d Docker) CreateNetworkIfNotPresent(ctx context.Context, inNet *k3d.ClusterNetwork) (*k3d.ClusterNetwork, bool, error)

CreateNetworkIfNotPresent creates a new docker network @return: network, exists, error

func (Docker) CreateNode

func (d Docker) CreateNode(ctx context.Context, node *k3d.Node) error

CreateNode creates a new container

func (Docker) CreateVolume

func (d Docker) CreateVolume(ctx context.Context, name string, labels map[string]string) error

CreateVolume creates a new named volume

func (Docker) DeleteNetwork

func (d Docker) DeleteNetwork(ctx context.Context, ID string) error

DeleteNetwork deletes a network

func (Docker) DeleteNode

func (d Docker) DeleteNode(ctx context.Context, nodeSpec *k3d.Node) error

DeleteNode deletes a node

func (Docker) DeleteVolume

func (d Docker) DeleteVolume(ctx context.Context, name string) error

DeleteVolume creates a new named volume

func (Docker) DisconnectNodeFromNetwork

func (d Docker) DisconnectNodeFromNetwork(ctx context.Context, node *k3d.Node, networkName string) error

DisconnectNodeFromNetwork disconnects a node from a network (u don't say :O)

func (Docker) ExecInNode

func (d Docker) ExecInNode(ctx context.Context, node *k3d.Node, cmd []string) error

ExecInNode execs a command inside a node

func (Docker) ExecInNodeGetLogs

func (d Docker) ExecInNodeGetLogs(ctx context.Context, node *k3d.Node, cmd []string) (*bufio.Reader, error)

ExecInNodeGetLogs executes a command inside a node and returns the logs to the caller, e.g. to parse them

func (Docker) GetDockerMachineIP

func (d Docker) GetDockerMachineIP() (string, error)

func (Docker) GetHost added in v4.1.0

func (d Docker) GetHost() string

GetHost returns the docker daemon host

func (Docker) GetHostIP

func (d Docker) GetHostIP(ctx context.Context, network string) (net.IP, error)

GetHostIP returns the IP of the docker host (routable from inside the containers)

func (Docker) GetImages

func (d Docker) GetImages(ctx context.Context) ([]string, error)

GetImages returns a list of images present in the runtime

func (Docker) GetKubeconfig

func (d Docker) GetKubeconfig(ctx context.Context, node *k3d.Node) (io.ReadCloser, error)

GetKubeconfig grabs the kubeconfig from inside a k3d node

func (Docker) GetNetwork added in v4.4.2

func (d Docker) GetNetwork(ctx context.Context, searchNet *k3d.ClusterNetwork) (*k3d.ClusterNetwork, error)

GetNetwork returns a given network

func (Docker) GetNode

func (d Docker) GetNode(ctx context.Context, node *k3d.Node) (*k3d.Node, error)

GetNode tries to get a node container by its name

func (Docker) GetNodeLogs

func (d Docker) GetNodeLogs(ctx context.Context, node *k3d.Node, since time.Time) (io.ReadCloser, error)

GetNodeLogs returns the logs from a given node

func (Docker) GetNodeStatus

func (d Docker) GetNodeStatus(ctx context.Context, node *k3d.Node) (bool, string, error)

GetNodeStatus returns the status of a node (Running, Started, etc.)

func (Docker) GetNodesByLabel

func (d Docker) GetNodesByLabel(ctx context.Context, labels map[string]string) ([]*k3d.Node, error)

GetNodesByLabel returns a list of existing nodes

func (Docker) GetNodesInNetwork

func (d Docker) GetNodesInNetwork(ctx context.Context, network string) ([]*k3d.Node, error)

GetNodesInNetwork returns all the nodes connected to a given network

func (Docker) GetRuntimePath

func (d Docker) GetRuntimePath() string

GetRuntimePath returns the path of the docker socket

func (Docker) GetVolume

func (d Docker) GetVolume(name string) (string, error)

GetVolume tries to get a named volume

func (Docker) ID added in v4.1.0

func (d Docker) ID() string

ID returns the identity of the runtime

func (Docker) Info added in v4.4.2

func (d Docker) Info() (*runtimeTypes.RuntimeInfo, error)

func (Docker) NodeIsRunning

func (d Docker) NodeIsRunning(ctx context.Context, node *k3d.Node) (bool, error)

NodeIsRunning tells the caller if a given node is in "running" state

func (Docker) ReadFromNode added in v4.4.4

func (d Docker) ReadFromNode(ctx context.Context, path string, node *k3d.Node) (io.ReadCloser, error)

ReadFromNode reads from a given filepath inside the node container

func (Docker) StartNode

func (d Docker) StartNode(ctx context.Context, node *k3d.Node) error

StartNode starts an existing node

func (Docker) StopNode

func (d Docker) StopNode(ctx context.Context, node *k3d.Node) error

StopNode stops an existing node

func (Docker) WriteToNode

func (d Docker) WriteToNode(ctx context.Context, content []byte, dest string, mode os.FileMode, node *k3d.Node) error

WriteToNode writes a byte array to the selected node

type NodeInDocker

type NodeInDocker struct {
	ContainerConfig  container.Config // TODO: do we need this as pointers?
	HostConfig       container.HostConfig
	NetworkingConfig network.NetworkingConfig
}

NodeInDocker represents everything that we need to represent a k3d node in docker

func TranslateNodeToContainer

func TranslateNodeToContainer(node *k3d.Node) (*NodeInDocker, error)

TranslateNodeToContainer translates a k3d node specification to a docker container representation

Jump to

Keyboard shortcuts

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