Documentation ¶
Index ¶
- func CredentialsConfigLoad() (*configfile.ConfigFile, error)
- func GetCertificates(certFile string) (certificates *x509.CertPool, err error)
- func GetClusterCertificate(clusterName string) (certificates *x509.CertPool, err error)
- func GetClusterCertificateFileName(clusterName string) string
- func GetRegistryInsecure(clusterName string) bool
- func PullBytes(ctx context.Context, sc StorageClient, artifact Artifact) (data []byte, err error)
- type Artifact
- type DockerCredentialStore
- type OCIRegistryClient
- func (or *OCIRegistryClient) CopyGraph(ctx context.Context, srcStorage orasregistry.Repository, ...) error
- func (or *OCIRegistryClient) Destination(image Artifact) string
- func (or *OCIRegistryClient) FetchBlob(ctx context.Context, srcStorage orasregistry.Repository, ...) ([]byte, error)
- func (or *OCIRegistryClient) FetchBytes(ctx context.Context, srcStorage orasregistry.Repository, artifact Artifact) (ocispec.Descriptor, []byte, error)
- func (or *OCIRegistryClient) GetHost() string
- func (or *OCIRegistryClient) GetStorage(ctx context.Context, artifact Artifact) (repo orasregistry.Repository, err error)
- func (or *OCIRegistryClient) Resolve(ctx context.Context, srcStorage orasregistry.Repository, versionedImage string) (desc ocispec.Descriptor, err error)
- func (or *OCIRegistryClient) SetProject(project string)
- type StorageClient
- type StorageContext
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CredentialsConfigLoad ¶ added in v0.2.29
func CredentialsConfigLoad() (*configfile.ConfigFile, error)
CredentialsConfigLoad load credentials from directory.
func GetCertificates ¶
GetCertificates get X509 certificates.
func GetClusterCertificate ¶ added in v0.2.29
func GetClusterCertificateFileName ¶ added in v0.2.29
func GetRegistryInsecure ¶ added in v0.2.29
Types ¶
type Artifact ¶
Artifact to head release dependency.
func NewArtifact ¶
NewArtifact creates a new artifact object.
func ParseArtifactFromURI ¶ added in v0.2.28
ParseArtifactFromURI parses the URI into a new Artifact object.
func (Artifact) VersionedImage ¶
VersionedImage returns full URI for image.
type DockerCredentialStore ¶ added in v0.2.29
type DockerCredentialStore struct {
// contains filtered or unexported fields
}
DockerCredentialStore for Docker registry credentials, like ~/.docker/config.json.
func NewDockerCredentialStore ¶ added in v0.2.29
func NewDockerCredentialStore(configFile *configfile.ConfigFile) *DockerCredentialStore
NewDockerCredentialStore creates a DockerCredentialStore.
func (*DockerCredentialStore) Credential ¶ added in v0.2.29
func (cs *DockerCredentialStore) Credential(registry string) (auth.Credential, error)
Credential get an authentication credential for a given registry.
type OCIRegistryClient ¶
type OCIRegistryClient struct { StorageContext // contains filtered or unexported fields }
OCIRegistryClient storage client for an OCI registry.
func NewOCIRegistry ¶
func NewOCIRegistry(sc StorageContext, registry *remote.Registry) *OCIRegistryClient
NewOCIRegistry create an OCI registry client.
func (*OCIRegistryClient) CopyGraph ¶
func (or *OCIRegistryClient) CopyGraph(ctx context.Context, srcStorage orasregistry.Repository, dstStorage orasregistry.Repository, desc ocispec.Descriptor) error
CopyGraph copy manifest and all blobs to destination.
func (*OCIRegistryClient) Destination ¶
func (or *OCIRegistryClient) Destination(image Artifact) string
Destination of this storage registry.
func (*OCIRegistryClient) FetchBlob ¶ added in v0.2.25
func (or *OCIRegistryClient) FetchBlob(ctx context.Context, srcStorage orasregistry.Repository, descriptor ocispec.Descriptor) ([]byte, error)
FetchBlob get named blob.
func (*OCIRegistryClient) FetchBytes ¶ added in v0.2.25
func (or *OCIRegistryClient) FetchBytes(ctx context.Context, srcStorage orasregistry.Repository, artifact Artifact) (ocispec.Descriptor, []byte, error)
FetchBytes a resource from the registry.
func (*OCIRegistryClient) GetHost ¶
func (or *OCIRegistryClient) GetHost() string
GetHost for registry host.
func (*OCIRegistryClient) GetStorage ¶
func (or *OCIRegistryClient) GetStorage(ctx context.Context, artifact Artifact) (repo orasregistry.Repository, err error)
GetStorage object based on repository.
func (*OCIRegistryClient) Resolve ¶
func (or *OCIRegistryClient) Resolve(ctx context.Context, srcStorage orasregistry.Repository, versionedImage string) (desc ocispec.Descriptor, err error)
Resolve the location of the source repository given the image.
func (*OCIRegistryClient) SetProject ¶
func (or *OCIRegistryClient) SetProject(project string)
SetProject for registry destination.
type StorageClient ¶
type StorageClient interface { Resolve(ctx context.Context, srcStorage orasregistry.Repository, versionedImage string) (desc ocispec.Descriptor, err error) GetStorage(ctx context.Context, image Artifact) (repo orasregistry.Repository, err error) SetProject(project string) Destination(image Artifact) string FetchBytes(ctx context.Context, srcStorage orasregistry.Repository, artifact Artifact) (ocispec.Descriptor, []byte, error) FetchBlob(ctx context.Context, srcStorage orasregistry.Repository, descriptor ocispec.Descriptor) ([]byte, error) CopyGraph(ctx context.Context, srcStorage orasregistry.Repository, dstStorage orasregistry.Repository, desc ocispec.Descriptor) error }
StorageClient interface for general image storage client.
type StorageContext ¶
type StorageContext struct {
// contains filtered or unexported fields
}
StorageContext describes aspects of a registry.
func NewStorageContext ¶
func NewStorageContext(host string, credentialStore *DockerCredentialStore, certificates *x509.CertPool, insecure bool) StorageContext
NewStorageContext create registry context.