Docker-Registry
view release on metacpan or search on metacpan
lib/Docker/Registry/Gitlab.pm view on Meta::CPAN
my $self = shift;
'https://registry.gitlab.com';
}
);
has 'username' => (
is => 'ro',
isa => Str,
required => 1,
);
has 'access_token' => (
is => 'ro',
isa => Str,
required => 1,
);
has 'jwt' => (
is => 'ro',
isa => DockerRegistryURI,
predicate => 'has_jwt',
);
has 'repo' => (
is => 'ro',
isa => Str,
predicate => 'has_repo',
);
around build_auth => sub {
my ($orig, $self) = @_;
require Docker::Registry::Auth::Gitlab;
return Docker::Registry::Auth::Gitlab->new(
username => $self->username,
access_token => $self->access_token,
$self->has_jwt ? (jwt => $self->jwt) : (),
);
};
__PACKAGE__->meta->make_immutable;
__END__
=head1 DESCRIPTION
Connect and do things with the gitlab registry
=head1 SYNOPSIS
use Docker::Registry::Gitlab;
my $registry = Docker::Registry::Gitlab->new(
username => 'foo',
access_token => 'bar', # your private token at gitlab
);
=head1 ATTRIBUTES
=head2 url
The endpoint of the registry, defaults to 'https://registry.gitlab.com'.
=head2 username
Your username at gitlab
=head2 access_token
The access token you get from
L<gitlab|https://gitlab.com/profile/personal_access_tokens> with
'read_registry' access.
=head2 repo
The repository you want to query.
=head2 jwt
The endpoint to request the JWT token from, if none supplied the default
of L<Docker::Registry::Auth::Gitlab> will be used.
=head1 METHODS
=head2 repositories
Unimplemented code path unless GITLAB_SCOPE is set as an environment variable.
=head1 BUGS
Because Gitlab doesn't support wild cards in scopes (yet!), you are not
able to call certain functions. L<Docker::Registry::Gitlab/repositories>
being one of them. For more information see:
L<https://gitlab.com/gitlab-org/gitlab-ce/issues/47497>
=head1 SEE ALSO
L<Docker::Registry::Auth::Gitlab> and L<Docker::Registry::V2>.
( run in 0.694 second using v1.01-cache-2.11-cpan-8f98c5d2c55 )