crioclient

package
v4.0.0-alpha.0+incompa... Latest Latest
Warning

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

Go to latest
Published: Sep 13, 2018 License: Apache-2.0 Imports: 6 Imported by: 0

Documentation

Overview

package crioclient embeds github.com/kubernetes-incubator/cri-o/client to reduce dependencies.

Index

Constants

View Source
const ResolvPath = "io.kubernetes.cri-o.ResolvPath"

ResolvPath is the annotation for the cri-o mounted resolve path.

Variables

This section is empty.

Functions

This section is empty.

Types

type ContainerInfo

type ContainerInfo struct {
	Name            string            `json:"name"`
	Pid             int               `json:"pid"`
	Image           string            `json:"image"`
	ImageRef        string            `json:"image_ref"`
	CreatedTime     int64             `json:"created_time"`
	Labels          map[string]string `json:"labels"`
	Annotations     map[string]string `json:"annotations"`
	CrioAnnotations map[string]string `json:"crio_annotations"`
	LogPath         string            `json:"log_path"`
	Root            string            `json:"root"`
	Sandbox         string            `json:"sandbox"`
	IP              string            `json:"ip_address"`
}

ContainerInfo stores information about containers

type CrioClient

type CrioClient interface {
	DaemonInfo() (CrioInfo, error)
	ContainerInfo(string) (*ContainerInfo, error)
}

CrioClient is an interface to get information from crio daemon endpoint.

func New

func New(crioSocketPath string) (CrioClient, error)

New returns a crio client

type CrioInfo

type CrioInfo struct {
	StorageDriver string `json:"storage_driver"`
	StorageRoot   string `json:"storage_root"`
	CgroupDriver  string `json:"cgroup_driver"`
}

CrioInfo stores information about the crio daemon

Jump to

Keyboard shortcuts

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