Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DockerInspectResponse ¶
type ErrorType ¶
type ErrorType int
ErrorType ...
type ImagePullError ¶
ImagePullError ...
func (ImagePullError) Error ¶
func (ipe ImagePullError) Error() string
func (*ImagePullError) String ¶
func (ipe *ImagePullError) String() string
type ImagePuller ¶
type ImagePuller struct {
// contains filtered or unexported fields
}
func NewImagePuller ¶
func NewImagePuller(directory string, registries []RegistryAuth) *ImagePuller
func (*ImagePuller) CreateImageInLocalDocker ¶
func (ip *ImagePuller) CreateImageInLocalDocker(img image) error
CreateImageInLocalDocker could also be implemented using curl: this example hits ... ? the default registry? docker hub?
curl --unix-socket /var/run/docker.sock -X POST http://localhost/images/create?fromImage=alpine
this example hits the kipp registry:
curl --unix-socket /var/run/docker.sock -X POST http://localhost/images/create\?fromImage\=registry.kipp.blackducksoftware.com%2Fblackducksoftware%2Fhub-jobrunner%3A4.5.0
func (*ImagePuller) PullImage ¶
func (ip *ImagePuller) PullImage(pullSpec string) (*PullResult, error)
PullImage gives us access to a docker image by:
- hitting a docker create endpoint (?)
- pulling down the newly created image and saving as a tarball
It does this by accessing the host's docker daemon, locally, over the docker socket. This gives us a window into any images that are local.
func (*ImagePuller) SaveImageToTar ¶
func (ip *ImagePuller) SaveImageToTar(img image) error
SaveImageToTar -- part of what it does is to issue an http request similar to the following:
curl --unix-socket /var/run/docker.sock -X GET http://localhost/images/openshift%2Forigin-docker-registry%3Av3.6.1/get
type ImagePullerInterface ¶
type ImagePullerInterface interface {
PullImage(pullSpec string) (*PullResult, error)
}
type RegistryAuth ¶
RegistryAuth ...
type SkopeoImagePuller ¶
type SkopeoImagePuller struct {
// contains filtered or unexported fields
}
func NewSkopeoImagePuller ¶
func NewSkopeoImagePuller(directory string, registries []RegistryAuth) *SkopeoImagePuller
func (*SkopeoImagePuller) PullImage ¶
func (ip *SkopeoImagePuller) PullImage(pullSpec string) (*PullResult, error)
func (*SkopeoImagePuller) SaveImageToTar ¶
func (ip *SkopeoImagePuller) SaveImageToTar(img image) error
Click to show internal directories.
Click to hide internal directories.