Documentation ¶
Index ¶
- Constants
- Variables
- func ExpandAndVerifyRegistryUrl(hostname string) (string, error)
- func IndexServerAddress() string
- func Login(authConfig *AuthConfig, factory *utils.HTTPRequestFactory) (string, error)
- func ResolveRepositoryName(reposName string) (string, string, error)
- func SaveConfig(configFile *ConfigFile) error
- type AuthConfig
- type ConfigFile
- type ImgData
- type Registry
- func (r *Registry) GetAuthConfig(withPasswd bool) *AuthConfig
- func (r *Registry) GetRemoteHistory(imgID, registry string, token []string) ([]string, error)
- func (r *Registry) GetRemoteImageJSON(imgID, registry string, token []string) ([]byte, int, error)
- func (r *Registry) GetRemoteImageLayer(imgID, registry string, token []string) (io.ReadCloser, error)
- func (r *Registry) GetRemoteTags(registries []string, repository string, token []string) (map[string]string, error)
- func (r *Registry) GetRepositoryData(remote string) (*RepositoryData, error)
- func (r *Registry) LookupRemoteImage(imgID, registry string, token []string) bool
- func (r *Registry) PushImageChecksumRegistry(imgData *ImgData, registry string, token []string) error
- func (r *Registry) PushImageJSONIndex(remote string, imgList []*ImgData, validate bool, regs []string) (*RepositoryData, error)
- func (r *Registry) PushImageJSONRegistry(imgData *ImgData, jsonRaw []byte, registry string, token []string) error
- func (r *Registry) PushImageLayerRegistry(imgID string, layer io.Reader, registry string, token []string, jsonRaw []byte) (checksum string, checksumPayload string, err error)
- func (r *Registry) PushRegistryTag(remote, revision, tag, registry string, token []string) error
- func (r *Registry) SearchRepositories(term string) (*SearchResults, error)
- type RepositoryData
- type SearchResult
- type SearchResults
Constants ¶
const CONFIGFILE = ".dockercfg"
Where we store the config file
const INDEXSERVER = "https://index.docker.io/v1/"
Only used for user auth + account creation
Variables ¶
var ( ErrAlreadyExists = errors.New("Image already exists") ErrInvalidRepositoryName = errors.New("Invalid repository name (ex: \"registry.domain.tld/myrepos\")") )
var (
ErrConfigFileMissing = errors.New("The Auth config file is missing")
)
Functions ¶
func ExpandAndVerifyRegistryUrl ¶ added in v0.6.2
this method expands the registry name as used in the prefix of a repo to a full url. if it already is a url, there will be no change. The registry is pinged to test if it http or https
func IndexServerAddress ¶ added in v0.10.0
func IndexServerAddress() string
func Login ¶ added in v0.10.0
func Login(authConfig *AuthConfig, factory *utils.HTTPRequestFactory) (string, error)
try to register/login to the registry server
func ResolveRepositoryName ¶ added in v0.5.0
Resolves a repository name to a hostname + name
func SaveConfig ¶ added in v0.10.0
func SaveConfig(configFile *ConfigFile) error
save the auth config
Types ¶
type AuthConfig ¶ added in v0.10.0
type ConfigFile ¶ added in v0.10.0
type ConfigFile struct { Configs map[string]AuthConfig `json:"configs,omitempty"` // contains filtered or unexported fields }
func LoadConfig ¶ added in v0.10.0
func LoadConfig(rootPath string) (*ConfigFile, error)
load up the auth config information and return values FIXME: use the internal golang config parser
func (*ConfigFile) ResolveAuthConfig ¶ added in v0.10.0
func (config *ConfigFile) ResolveAuthConfig(hostname string) AuthConfig
this method matches a auth configuration to a server address or a url
type Registry ¶
type Registry struct {
// contains filtered or unexported fields
}
func NewRegistry ¶
func NewRegistry(authConfig *AuthConfig, factory *utils.HTTPRequestFactory, indexEndpoint string) (r *Registry, err error)
func (*Registry) GetAuthConfig ¶
func (r *Registry) GetAuthConfig(withPasswd bool) *AuthConfig
func (*Registry) GetRemoteHistory ¶
Retrieve the history of a given image from the Registry. Return a list of the parent's json (requested image included)
func (*Registry) GetRemoteImageJSON ¶ added in v0.4.1
Retrieve an image from the Registry.
func (*Registry) GetRemoteImageLayer ¶
func (*Registry) GetRemoteTags ¶
func (*Registry) GetRepositoryData ¶
func (r *Registry) GetRepositoryData(remote string) (*RepositoryData, error)
func (*Registry) LookupRemoteImage ¶
Check if an image exists in the Registry TODO: This method should return the errors instead of masking them and returning false
func (*Registry) PushImageChecksumRegistry ¶ added in v0.6.0
func (*Registry) PushImageJSONIndex ¶ added in v0.4.1
func (*Registry) PushImageJSONRegistry ¶ added in v0.4.1
func (r *Registry) PushImageJSONRegistry(imgData *ImgData, jsonRaw []byte, registry string, token []string) error
Push a local image to the registry
func (*Registry) PushImageLayerRegistry ¶
func (*Registry) PushRegistryTag ¶
push a tag on the registry. Remote has the format '<user>/<repo>
func (*Registry) SearchRepositories ¶
func (r *Registry) SearchRepositories(term string) (*SearchResults, error)
type RepositoryData ¶
type SearchResult ¶ added in v0.6.6
type SearchResults ¶
type SearchResults struct { Query string `json:"query"` NumResults int `json:"num_results"` Results []SearchResult `json:"results"` }