mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Changes the still pull check to be using Python Docker SDK
This commit is contained in:
parent
a884647a7c
commit
215691ac1a
67
.github/scripts/cleanup-tags.py
vendored
67
.github/scripts/cleanup-tags.py
vendored
@ -15,6 +15,8 @@ from github import ContainerPackage
|
|||||||
from github import GithubBranchApi
|
from github import GithubBranchApi
|
||||||
from github import GithubContainerRegistryApi
|
from github import GithubContainerRegistryApi
|
||||||
|
|
||||||
|
import docker
|
||||||
|
|
||||||
logger = logging.getLogger("cleanup-tags")
|
logger = logging.getLogger("cleanup-tags")
|
||||||
|
|
||||||
|
|
||||||
@ -151,6 +153,8 @@ class RegistryTagsCleaner:
|
|||||||
for tag in sorted(self.tags_to_keep):
|
for tag in sorted(self.tags_to_keep):
|
||||||
full_name = f"ghcr.io/{self.repo_owner}/{self.package_name}:{tag}"
|
full_name = f"ghcr.io/{self.repo_owner}/{self.package_name}:{tag}"
|
||||||
logger.info(f"Checking manifest for {full_name}")
|
logger.info(f"Checking manifest for {full_name}")
|
||||||
|
# TODO: It would be nice to use RegistryData from docker
|
||||||
|
# except the ID doesn't map to anything in the manifest
|
||||||
try:
|
try:
|
||||||
proc = subprocess.run(
|
proc = subprocess.run(
|
||||||
[
|
[
|
||||||
@ -243,6 +247,65 @@ class RegistryTagsCleaner:
|
|||||||
# By default, keep anything which is tagged
|
# By default, keep anything which is tagged
|
||||||
self.tags_to_keep = list(set(self.all_pkgs_tags_to_version.keys()))
|
self.tags_to_keep = list(set(self.all_pkgs_tags_to_version.keys()))
|
||||||
|
|
||||||
|
def check_tags_pull(self):
|
||||||
|
"""
|
||||||
|
This method uses the Docker Python SDK to confirm all tags which were
|
||||||
|
kept still pull, for all platforms.
|
||||||
|
|
||||||
|
TODO: This is much slower (although more comprehensive). Maybe a Pool?
|
||||||
|
"""
|
||||||
|
logger.info("Beginning confirmation step")
|
||||||
|
client = docker.from_env()
|
||||||
|
imgs = []
|
||||||
|
for tag in sorted(self.tags_to_keep):
|
||||||
|
repository = f"ghcr.io/{self.repo_owner}/{self.package_name}"
|
||||||
|
for arch, variant in [("amd64", None), ("arm64", None), ("arm", "v7")]:
|
||||||
|
# From 11.2.0 onwards, qpdf is cross compiled, so there is a single arch, amd64
|
||||||
|
# skip others in this case
|
||||||
|
if "qpdf" in self.package_name and arch != "amd64" and tag == "11.2.0":
|
||||||
|
continue
|
||||||
|
# Skip beta and release candidate tags
|
||||||
|
elif "beta" in tag:
|
||||||
|
continue
|
||||||
|
|
||||||
|
# Build the platform name
|
||||||
|
if variant is not None:
|
||||||
|
platform = f"linux/{arch}/{variant}"
|
||||||
|
else:
|
||||||
|
platform = f"linux/{arch}"
|
||||||
|
|
||||||
|
try:
|
||||||
|
logger.info(f"Pulling {repository}:{tag} for {platform}")
|
||||||
|
image = client.images.pull(
|
||||||
|
repository=repository,
|
||||||
|
tag=tag,
|
||||||
|
platform=platform,
|
||||||
|
)
|
||||||
|
imgs.append(image)
|
||||||
|
except docker.errors.APIError as e:
|
||||||
|
logger.error(
|
||||||
|
f"Failed to pull {repository}:{tag}: {e}",
|
||||||
|
)
|
||||||
|
|
||||||
|
# Prevent out of space errors by removing after a few
|
||||||
|
# pulls
|
||||||
|
if len(imgs) > 50:
|
||||||
|
for image in imgs:
|
||||||
|
try:
|
||||||
|
client.images.remove(image.id)
|
||||||
|
except docker.errors.APIError as e:
|
||||||
|
err_str = str(e)
|
||||||
|
# Ignore attempts to remove images that are partly shared
|
||||||
|
# Ignore images which are somehow gone already
|
||||||
|
if (
|
||||||
|
"must be forced" not in err_str
|
||||||
|
and "No such image" not in err_str
|
||||||
|
):
|
||||||
|
logger.error(
|
||||||
|
f"Remove image ghcr.io/{self.repo_owner}/{self.package_name}:{tag} failed: {e}",
|
||||||
|
)
|
||||||
|
imgs = []
|
||||||
|
|
||||||
|
|
||||||
class MainImageTagsCleaner(RegistryTagsCleaner):
|
class MainImageTagsCleaner(RegistryTagsCleaner):
|
||||||
def decide_what_tags_to_keep(self):
|
def decide_what_tags_to_keep(self):
|
||||||
@ -399,6 +462,10 @@ def _main():
|
|||||||
# Clean images which are untagged
|
# Clean images which are untagged
|
||||||
cleaner.clean_untagged(args.is_manifest)
|
cleaner.clean_untagged(args.is_manifest)
|
||||||
|
|
||||||
|
# Verify remaining tags still pull
|
||||||
|
if args.is_manifest:
|
||||||
|
cleaner.check_tags_pull()
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
_main()
|
_main()
|
||||||
|
18
.github/workflows/cleanup-tags.yml
vendored
18
.github/workflows/cleanup-tags.yml
vendored
@ -62,9 +62,9 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
python-version: "3.10"
|
python-version: "3.10"
|
||||||
-
|
-
|
||||||
name: Install httpx
|
name: Install Python libraries
|
||||||
run: |
|
run: |
|
||||||
python -m pip install httpx
|
python -m pip install httpx docker
|
||||||
#
|
#
|
||||||
# Clean up primary package
|
# Clean up primary package
|
||||||
#
|
#
|
||||||
@ -72,7 +72,7 @@ jobs:
|
|||||||
name: Cleanup for package "${{ matrix.primary-name }}"
|
name: Cleanup for package "${{ matrix.primary-name }}"
|
||||||
if: "${{ env.TOKEN != '' }}"
|
if: "${{ env.TOKEN != '' }}"
|
||||||
run: |
|
run: |
|
||||||
python ${GITHUB_WORKSPACE}/.github/scripts/cleanup-tags.py --untagged --is-manifest --delete "${{ matrix.primary-name }}"
|
python ${GITHUB_WORKSPACE}/.github/scripts/cleanup-tags.py --untagged --is-manifest "${{ matrix.primary-name }}"
|
||||||
#
|
#
|
||||||
# Clean up registry cache package
|
# Clean up registry cache package
|
||||||
#
|
#
|
||||||
@ -80,14 +80,4 @@ jobs:
|
|||||||
name: Cleanup for package "${{ matrix.cache-name }}"
|
name: Cleanup for package "${{ matrix.cache-name }}"
|
||||||
if: "${{ env.TOKEN != '' }}"
|
if: "${{ env.TOKEN != '' }}"
|
||||||
run: |
|
run: |
|
||||||
python ${GITHUB_WORKSPACE}/.github/scripts/cleanup-tags.py --untagged --delete "${{ matrix.cache-name }}"
|
python ${GITHUB_WORKSPACE}/.github/scripts/cleanup-tags.py --untagged "${{ matrix.cache-name }}"
|
||||||
#
|
|
||||||
# Verify tags which are left still pull
|
|
||||||
#
|
|
||||||
-
|
|
||||||
name: Check all tags still pull
|
|
||||||
run: |
|
|
||||||
ghcr_name=$(echo "ghcr.io/${GITHUB_REPOSITORY_OWNER}/${{ matrix.primary-name }}" | awk '{ print tolower($0) }')
|
|
||||||
echo "Pulling all tags of ${ghcr_name}"
|
|
||||||
docker pull --quiet --all-tags ${ghcr_name}
|
|
||||||
docker image list
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user