paclair
paclair copied to clipboard
Paclair is a Python3 Cli tool to interact with Coreos's Clair (https://github.com/coreos/clair).
Paclair doesn't support multi-platform images like gcr.io/kubernetes-e2e-test-images/sample-apiserver:1.17 and fails with following error: ```Traceback (most recent call last): File "/home/sofya/paclair/virt/bin/paclair", line 11, in load_entry_point('paclair', 'console_scripts', 'paclair')() File "/home/sofya/paclair/paclair/__main__.py", line 71, in...
$ python -m paclair --conf /source/conf.yml Docker ${IMAGE} push Traceback (most recent call last): File "/usr/local/lib/python3.8/runpy.py", line 194, in _run_module_as_main return _run_code(code, main_globals, None, File "/usr/local/lib/python3.8/runpy.py", line 87, in _run_code...
I'm trying to test something with paclair using a localhost registry. When I create my registry in the conf: ``` Plugins: Docker: class: paclair.plugins.docker_plugin.DockerPlugin registries: localhost:5000: auth: - "admin" -...
Hello, did someone use paclair with a private registry from sonatype nexus and can give me an example configuration? especially for the api_prefix I try a lot around but it...
The REGEX defined in the file "paclair/__init__.py" might not right. It can't match the domain when I push a image like "registray.test.com/abc/test/nginx:latest". The value of the "domain" should be like...
In paclair/plugins/docker_plugin.py,the function create_docker_image() might has a bug. it should be like this: # Base docker image if matcher.group("domain") is None: if '/' in matcher.group("name"): return DockerImage(matcher.group("name"), self.__docker_hub, tag=matcher.group("tag") or...
I was having trouble connecting to v2 docker registry behind a proxy using HTTP Basic Auth. So this is my quick hack.