This is a package for querying the size of repositories in a GitLab registry.
Project description
GitLab-Registry-Usage
Introduction
GitLab-Registry-Usage is a package for querying the sizes of Docker repositories stored in a GitLab registry. The package has been created because it is not possible to monitor sizes of GitLab registry repositories with GitLab web monitoring tools (GitLab version <= 10.5.4).
Installation
The latest version is available from PyPI:
pip install gitlab-registry-usage
If you use Arch Linux or one of its derivatives, you can also install gitlab-registry-usage
from the
AUR:
yay -S python-gitlab-registry-usage
Optionally, you can also use Docker:
docker build -t gitlab-registry-usage .
docker run --rm -it gitlab-registry-usage --help
Usage
Command Line Interface
After installing with pip
, a gitlab-registry-usage
command is available:
$ gitlab-registry-usage --help
usage: gitlab-registry-usage [-h] [-g GITLAB_SERVER] [-r REGISTRY_SERVER]
[-s {name,size,disksize}] [-c CREDENTIALS_FILE]
[-u USERNAME] [-V] [-v | --debug]
gitlab-registry-usage is a utility for querying the memory usage of repositories in a GitLab registry.
optional arguments:
-h, --help show this help message and exit
-g GITLAB_SERVER, --gitlab-server GITLAB_SERVER
GitLab server hostname (for example `mygitlab.com`)
-r REGISTRY_SERVER, --registry-server REGISTRY_SERVER
GitLab registry server hostname (for example
`registry.mygitlab.com`)
-s {name,size,disksize}, --sort {name,size,disksize}
sorting order (default: name)
-c CREDENTIALS_FILE, --credentials-file CREDENTIALS_FILE
path to a file containing username and password/access
token (on two separate lines)
-u USERNAME, --user USERNAME
user account for querying the GitLab API (default:
root)
-V, --version print the version number and exit
-v, --verbose be verbose
--debug print debug messages
You should specify a GitLab server hostname (-g
), a GitLab registry server hostname (-r
) and either a credentials
file (-c
) or username (-u
) and password (read from stdin).
API
The module offers a high level GitLabRegistry
class to query the repository catalog and repository sizes. This example
prints all repositories, tags and their sizes:
from gitlab_registry_usage import GitLabRegistry
# TODO: set these values!
gitlab_base_url = ''
registry_base_url = ''
username = 'root'
access_token = '0000000000'
gitlab_registry = GitLabRegistry(
gitlab_base_url, registry_base_url, username, access_token
)
for repository in gitlab_registry.repository_tags.keys():
repository_tags = gitlab_registry.repository_tags[repository]
repository_size = gitlab_registry.repository_sizes[repository]
repository_disk_size = gitlab_registry.repository_disk_sizes[repository]
tag_sizes = gitlab_registry.tag_sizes[repository]
tag_disk_sizes = gitlab_registry.tag_disk_sizes[repository]
if (
repository_tags is not None and repository_size is not None
and repository_disk_size is not None and tag_sizes is not None
and tag_disk_sizes is not None
):
print(
'{}: repository size: {}, repository disk size: {}'.format(
repository, repository_size, repository_disk_size
)
)
for tag in repository_tags:
print(
'{}: tag size: {}, tag disk size: {}'.format(
tag, tag_sizes[tag], tag_disk_sizes[tag]
)
)
else:
print('{}: no further information available'.format(repository))
print()
print(
('total size: {}, total disk size: {}').format(
gitlab_registry.total_size, gitlab_registry.total_disk_size
)
)
The method delete_image
can be used to delete a particular image if the corresponding SHA256 hash is known.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file gitlab-registry-usage-0.3.3.tar.gz
.
File metadata
- Download URL: gitlab-registry-usage-0.3.3.tar.gz
- Upload date:
- Size: 11.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0efe8dd23f962231a1d9f27bb0cd5d2d9c7a2ce5b8d2f68ac5ad3ab28747a392 |
|
MD5 | defbfb155cb0411684b7102fb123363b |
|
BLAKE2b-256 | ef27d728b09a3677c5bda1e4b41a11e88b437b843037447de3eab15a94f24292 |
File details
Details for the file gitlab_registry_usage-0.3.3-py3-none-any.whl
.
File metadata
- Download URL: gitlab_registry_usage-0.3.3-py3-none-any.whl
- Upload date:
- Size: 11.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 68fd8adf16563fc79244460f9f698df6edc53367e05c37adaa387cbd6d298665 |
|
MD5 | 34f3117c8abf1a3d7025b5c268a3a11f |
|
BLAKE2b-256 | cc77e2807a63a08167f4ea3af83499b164f90148a2e0dd54360a86733b5117b2 |