2023-11-24 16:41:22 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
"""Plan:
|
|
|
|
- Create a PR with regenerated Dockerfiles for each release branch
|
|
|
|
- Generate `library definition file` as described in
|
|
|
|
https://github.com/docker-library/official-images/blob/master/README.md#library-definition-files
|
|
|
|
- Create a PR with it to https://github.com/docker-library/official-images, the file
|
|
|
|
name will be `library/clickhouse`"""
|
|
|
|
|
|
|
|
import argparse
|
|
|
|
import logging
|
2023-12-04 11:05:54 +00:00
|
|
|
from dataclasses import dataclass
|
|
|
|
from os import getpid
|
2023-11-24 16:41:22 +00:00
|
|
|
from pathlib import Path
|
2023-11-28 10:12:46 +00:00
|
|
|
from pprint import pformat
|
2023-12-04 11:05:54 +00:00
|
|
|
from shlex import quote
|
2023-11-24 16:41:22 +00:00
|
|
|
from shutil import rmtree
|
2023-12-04 11:05:54 +00:00
|
|
|
from textwrap import fill
|
2023-12-04 11:08:40 +00:00
|
|
|
from typing import Dict, Iterable, List, Optional, Set
|
2023-11-24 16:41:22 +00:00
|
|
|
|
2024-11-07 13:15:54 +00:00
|
|
|
from env_helper import GITHUB_REPOSITORY, IS_CI
|
|
|
|
from git_helper import GIT_PREFIX, Git, git_runner
|
2023-11-24 16:41:22 +00:00
|
|
|
from version_helper import (
|
|
|
|
ClickHouseVersion,
|
|
|
|
get_supported_versions,
|
|
|
|
get_tagged_versions,
|
|
|
|
get_version_from_string,
|
|
|
|
)
|
|
|
|
|
2023-12-04 11:08:40 +00:00
|
|
|
UBUNTU_NAMES = {
|
|
|
|
"20.04": "focal",
|
|
|
|
"22.04": "jammy",
|
|
|
|
}
|
|
|
|
|
2024-11-07 13:15:54 +00:00
|
|
|
if not IS_CI:
|
|
|
|
GIT_PREFIX = "git"
|
|
|
|
|
|
|
|
DOCKER_LIBRARY_REPOSITORY = "ClickHouse/docker-library"
|
2023-12-04 11:08:40 +00:00
|
|
|
|
|
|
|
DOCKER_LIBRARY_NAME = {"server": "clickhouse"}
|
|
|
|
|
2023-11-24 16:41:22 +00:00
|
|
|
|
|
|
|
def parse_args() -> argparse.Namespace:
|
|
|
|
parser = argparse.ArgumentParser(
|
|
|
|
formatter_class=argparse.ArgumentDefaultsHelpFormatter,
|
|
|
|
description="The script to handle tasks for docker-library/official-images",
|
|
|
|
)
|
2023-12-06 15:57:00 +00:00
|
|
|
global_args = argparse.ArgumentParser(add_help=False)
|
2023-12-06 14:52:21 +00:00
|
|
|
global_args.add_argument(
|
2023-11-28 10:12:46 +00:00
|
|
|
"-v",
|
|
|
|
"--verbose",
|
|
|
|
action="count",
|
|
|
|
default=0,
|
|
|
|
help="set the script verbosity, could be used multiple",
|
|
|
|
)
|
2023-12-06 14:52:21 +00:00
|
|
|
global_args.add_argument(
|
2023-11-24 16:41:22 +00:00
|
|
|
"--directory",
|
2024-11-12 15:46:45 +00:00
|
|
|
type=Path,
|
|
|
|
default=Path("docker/official"),
|
2023-11-24 16:41:22 +00:00
|
|
|
help="a relative to the reporitory root directory",
|
|
|
|
)
|
2023-12-06 14:52:21 +00:00
|
|
|
global_args.add_argument(
|
2023-11-28 10:12:46 +00:00
|
|
|
"--image-type",
|
|
|
|
choices=["server", "keeper"],
|
|
|
|
default="server",
|
|
|
|
help="which image type to process",
|
|
|
|
)
|
2023-12-06 14:52:21 +00:00
|
|
|
global_args.add_argument(
|
2023-12-04 11:05:54 +00:00
|
|
|
"--commit",
|
|
|
|
action="store_true",
|
|
|
|
help="if set, the directory `docker/official` will be staged and committed "
|
|
|
|
"after generating",
|
|
|
|
)
|
2024-05-06 15:06:49 +00:00
|
|
|
dockerfile_glob = "Dockerfile.*"
|
|
|
|
global_args.add_argument(
|
|
|
|
"--dockerfile-glob",
|
|
|
|
default=dockerfile_glob,
|
|
|
|
help="a glob to collect Dockerfiles in the server of keeper directory",
|
|
|
|
)
|
2023-11-24 16:41:22 +00:00
|
|
|
subparsers = parser.add_subparsers(
|
2023-12-04 11:05:54 +00:00
|
|
|
title="commands", dest="command", required=True, help="the command to run"
|
2023-11-24 16:41:22 +00:00
|
|
|
)
|
|
|
|
parser_tree = subparsers.add_parser(
|
2023-12-06 14:52:21 +00:00
|
|
|
"generate-tree",
|
2023-12-06 15:57:00 +00:00
|
|
|
formatter_class=argparse.ArgumentDefaultsHelpFormatter,
|
2023-12-06 14:52:21 +00:00
|
|
|
help="generates directory `docker/official`",
|
|
|
|
parents=[global_args],
|
2023-11-24 16:41:22 +00:00
|
|
|
)
|
|
|
|
parser_tree.add_argument(
|
|
|
|
"--min-version",
|
|
|
|
type=get_version_from_string,
|
|
|
|
default=None,
|
|
|
|
help="if not set, only currently supported versions will be used",
|
|
|
|
)
|
2023-12-06 15:57:00 +00:00
|
|
|
parser_tree.add_argument(
|
|
|
|
"--docker-branch",
|
2024-05-06 15:06:49 +00:00
|
|
|
default="",
|
|
|
|
help="if set, the branch to get the content of `docker/server` directory. When "
|
|
|
|
"unset, the content of directories is taken from release tags",
|
2023-11-24 16:41:22 +00:00
|
|
|
)
|
|
|
|
parser_tree.add_argument(
|
|
|
|
"--build-images",
|
|
|
|
action="store_true",
|
2024-05-06 15:06:49 +00:00
|
|
|
help="if set, the image will be built for each Dockerfile '--dockerfile-glob' "
|
|
|
|
"in the result dirs",
|
2023-11-24 16:41:22 +00:00
|
|
|
)
|
|
|
|
parser_tree.add_argument("--clean", default=True, help=argparse.SUPPRESS)
|
|
|
|
parser_tree.add_argument(
|
|
|
|
"--no-clean",
|
|
|
|
dest="clean",
|
|
|
|
action="store_false",
|
|
|
|
default=argparse.SUPPRESS,
|
|
|
|
help="if set, the directory `docker/official` won't be cleaned "
|
|
|
|
"before generating",
|
|
|
|
)
|
2023-12-04 11:05:54 +00:00
|
|
|
parser_tree.add_argument(
|
|
|
|
"--fetch-tags",
|
|
|
|
action="store_true",
|
|
|
|
help="if set, the tags will be updated before run",
|
|
|
|
)
|
2023-12-08 11:07:13 +00:00
|
|
|
parser_ldf = subparsers.add_parser(
|
2023-12-06 14:52:21 +00:00
|
|
|
"generate-ldf",
|
2023-12-06 15:57:00 +00:00
|
|
|
formatter_class=argparse.ArgumentDefaultsHelpFormatter,
|
2023-12-06 14:52:21 +00:00
|
|
|
help="generate docker library definition file",
|
|
|
|
parents=[global_args],
|
2023-12-04 11:08:40 +00:00
|
|
|
)
|
2023-12-08 11:07:13 +00:00
|
|
|
parser_ldf.add_argument("--check-changed", default=True, help=argparse.SUPPRESS)
|
|
|
|
parser_ldf.add_argument(
|
|
|
|
"--no-check-changed",
|
|
|
|
dest="check_changed",
|
|
|
|
action="store_false",
|
|
|
|
default=argparse.SUPPRESS,
|
|
|
|
help="if set, the directory `docker/official` won't be checked to be "
|
|
|
|
"uncommitted",
|
|
|
|
)
|
2023-11-24 16:41:22 +00:00
|
|
|
args = parser.parse_args()
|
|
|
|
return args
|
|
|
|
|
|
|
|
|
|
|
|
def get_versions_greater(minimal: ClickHouseVersion) -> Set[ClickHouseVersion]:
|
2024-11-12 15:46:45 +00:00
|
|
|
"Get the latest patch version for each major.minor >= minimal"
|
2023-11-24 16:41:22 +00:00
|
|
|
supported = {} # type: Dict[str, ClickHouseVersion]
|
|
|
|
versions = get_tagged_versions()
|
|
|
|
for v in versions:
|
2024-11-07 13:34:31 +00:00
|
|
|
if v < minimal or not v.is_supported:
|
2023-11-24 16:41:22 +00:00
|
|
|
continue
|
|
|
|
txt = f"{v.major}.{v.minor}"
|
|
|
|
if txt in supported:
|
|
|
|
supported[txt] = max(v, supported[txt])
|
|
|
|
continue
|
|
|
|
supported[txt] = v
|
|
|
|
return set(supported.values())
|
|
|
|
|
|
|
|
|
|
|
|
def create_versions_dirs(
|
2023-11-28 10:12:46 +00:00
|
|
|
versions: Iterable[ClickHouseVersion], directory: Path
|
2023-11-24 16:41:22 +00:00
|
|
|
) -> Dict[ClickHouseVersion, Path]:
|
|
|
|
assert directory.is_dir() or not directory.exists()
|
|
|
|
dirs = {}
|
|
|
|
for v in versions:
|
2023-11-28 10:12:46 +00:00
|
|
|
version_dir = directory / str(v)
|
2023-11-24 16:41:22 +00:00
|
|
|
version_dir.mkdir(parents=True, exist_ok=True)
|
2023-11-28 10:12:46 +00:00
|
|
|
logging.debug("Directory %s for version %s is created", version_dir, v)
|
2023-11-24 16:41:22 +00:00
|
|
|
dirs[v] = version_dir
|
|
|
|
return dirs
|
|
|
|
|
|
|
|
|
|
|
|
def generate_docker_directories(
|
|
|
|
version_dirs: Dict[ClickHouseVersion, Path],
|
2023-12-06 15:57:00 +00:00
|
|
|
docker_branch: str,
|
2024-05-06 15:06:49 +00:00
|
|
|
dockerfile_glob: str,
|
2023-11-24 16:41:22 +00:00
|
|
|
build_images: bool = False,
|
|
|
|
image_type: str = "server",
|
|
|
|
) -> None:
|
2023-11-28 10:12:46 +00:00
|
|
|
arg_version = "ARG VERSION="
|
2024-05-06 14:06:07 +00:00
|
|
|
start_filter = "#docker-official-library:off"
|
|
|
|
stop_filter = "#docker-official-library:on"
|
2023-11-24 16:41:22 +00:00
|
|
|
for version, directory in version_dirs.items():
|
2024-05-06 15:06:49 +00:00
|
|
|
branch = docker_branch or version.describe
|
2024-11-12 15:46:45 +00:00
|
|
|
docker_source = f"{branch}:docker/{image_type}"
|
2023-11-28 10:12:46 +00:00
|
|
|
logging.debug(
|
2024-11-12 15:46:45 +00:00
|
|
|
"Unpack directory content from '%s' to %s",
|
|
|
|
docker_source,
|
2023-11-28 10:12:46 +00:00
|
|
|
directory,
|
|
|
|
)
|
2024-11-12 15:46:45 +00:00
|
|
|
# We ignore README* files
|
2023-11-24 16:41:22 +00:00
|
|
|
git_runner(
|
2024-11-12 15:46:45 +00:00
|
|
|
f"git archive {docker_source} | tar --exclude='README*' -x -C {directory}"
|
2023-11-24 16:41:22 +00:00
|
|
|
)
|
2024-05-06 15:06:49 +00:00
|
|
|
for df in directory.glob(dockerfile_glob):
|
2024-05-06 14:06:07 +00:00
|
|
|
original_content = df.read_text().splitlines()
|
|
|
|
content = []
|
|
|
|
filtering = False
|
|
|
|
for line in original_content:
|
|
|
|
# Change the ARG VERSION= to a proper version
|
2023-11-28 10:12:46 +00:00
|
|
|
if line.startswith(arg_version):
|
|
|
|
logging.debug(
|
|
|
|
"Found '%s' in line %s:%s, setting to version %s",
|
|
|
|
arg_version,
|
|
|
|
df.name,
|
2024-05-06 14:06:07 +00:00
|
|
|
original_content.index(line),
|
2023-11-28 10:12:46 +00:00
|
|
|
version,
|
|
|
|
)
|
2024-05-06 14:06:07 +00:00
|
|
|
content.append(f'{arg_version}"{version}"')
|
|
|
|
continue
|
|
|
|
# Filter out CI-related part from official docker
|
|
|
|
if line == start_filter:
|
|
|
|
filtering = True
|
|
|
|
continue
|
|
|
|
if line == stop_filter:
|
|
|
|
filtering = False
|
|
|
|
continue
|
|
|
|
if not filtering:
|
|
|
|
content.append(line)
|
|
|
|
|
2023-11-24 16:41:22 +00:00
|
|
|
df.write_text("\n".join(content) + "\n")
|
|
|
|
if build_images:
|
|
|
|
git_runner(
|
|
|
|
f"docker build --network=host -t '{DOCKER_LIBRARY_NAME[image_type]}:"
|
|
|
|
f"{version}{df.suffix}' -f '{df}' --progress plain '{directory}'"
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2023-12-04 11:05:54 +00:00
|
|
|
def path_is_changed(path: Path) -> bool:
|
2024-11-12 15:46:45 +00:00
|
|
|
"checks if `path` has uncommitted changes"
|
2023-12-04 11:05:54 +00:00
|
|
|
logging.info("Checking if the path %s is changed", path)
|
2024-11-07 13:15:54 +00:00
|
|
|
path_dir = path.parent
|
|
|
|
return bool(git_runner(f"git -C {path_dir} status --porcelain -- '{path}'"))
|
2023-12-04 11:05:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
def get_cmdline(width: int = 80) -> str:
|
2024-11-12 15:46:45 +00:00
|
|
|
"Returns the cmdline split by words with given maximum width"
|
2023-12-04 11:05:54 +00:00
|
|
|
cmdline = " ".join(
|
|
|
|
quote(arg)
|
|
|
|
for arg in Path(f"/proc/{getpid()}/cmdline")
|
|
|
|
.read_text(encoding="utf-8")
|
|
|
|
.split("\x00")[:-1]
|
|
|
|
)
|
|
|
|
if width <= 2:
|
|
|
|
return cmdline
|
|
|
|
|
|
|
|
return " \\\n".join(
|
|
|
|
fill(
|
|
|
|
cmdline,
|
|
|
|
break_long_words=False,
|
|
|
|
break_on_hyphens=False,
|
|
|
|
subsequent_indent=r" ",
|
|
|
|
width=width - 2,
|
|
|
|
).split("\n")
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2023-11-24 16:41:22 +00:00
|
|
|
def generate_tree(args: argparse.Namespace) -> None:
|
2023-12-04 11:05:54 +00:00
|
|
|
if args.fetch_tags:
|
|
|
|
# Fetch all tags to not miss the latest versions
|
2024-11-07 13:15:54 +00:00
|
|
|
git_runner(f"{GIT_PREFIX} fetch --tags --no-recurse-submodules")
|
2023-11-24 16:41:22 +00:00
|
|
|
if args.min_version:
|
|
|
|
versions = get_versions_greater(args.min_version)
|
|
|
|
else:
|
|
|
|
versions = get_supported_versions()
|
2023-11-28 10:12:46 +00:00
|
|
|
logging.info(
|
|
|
|
"The versions to generate:\n %s",
|
|
|
|
"\n ".join(v.string for v in sorted(versions)),
|
|
|
|
)
|
|
|
|
directory = Path(git_runner.cwd) / args.directory / args.image_type
|
2023-11-24 16:41:22 +00:00
|
|
|
if args.clean:
|
|
|
|
try:
|
2023-11-28 10:12:46 +00:00
|
|
|
logging.info("Removing directory %s before generating", directory)
|
2023-11-24 16:41:22 +00:00
|
|
|
rmtree(directory)
|
|
|
|
except FileNotFoundError:
|
|
|
|
pass
|
|
|
|
version_dirs = create_versions_dirs(versions, directory)
|
2023-11-28 10:12:46 +00:00
|
|
|
generate_docker_directories(
|
2023-12-06 15:57:00 +00:00
|
|
|
version_dirs,
|
|
|
|
args.docker_branch,
|
2024-05-06 15:06:49 +00:00
|
|
|
args.dockerfile_glob,
|
2023-12-06 15:57:00 +00:00
|
|
|
args.build_images,
|
|
|
|
args.image_type,
|
2023-11-28 10:12:46 +00:00
|
|
|
)
|
2023-12-04 11:05:54 +00:00
|
|
|
if args.commit and path_is_changed(directory):
|
|
|
|
logging.info("Staging and committing content of %s", directory)
|
2024-11-07 13:15:54 +00:00
|
|
|
git_runner(f"git -C {directory} add {directory}")
|
2023-12-04 11:05:54 +00:00
|
|
|
commit_message = "\n".join(
|
|
|
|
(
|
|
|
|
"Re-/Generated tags for official docker library",
|
|
|
|
"",
|
|
|
|
"The changed versions:",
|
|
|
|
*(f" {v.string}" for v in sorted(versions)),
|
|
|
|
f"The old images were removed: {args.clean}",
|
|
|
|
"The directory is generated and committed as following:",
|
|
|
|
f"{get_cmdline()}",
|
|
|
|
)
|
|
|
|
)
|
2024-11-07 13:15:54 +00:00
|
|
|
git_runner(f"{GIT_PREFIX} -C {directory} commit -F -", input=commit_message)
|
2023-11-24 16:41:22 +00:00
|
|
|
|
|
|
|
|
2023-12-04 11:08:40 +00:00
|
|
|
@dataclass
|
|
|
|
class TagAttrs:
|
2024-11-12 15:46:45 +00:00
|
|
|
"""A mutable metadata to preserve between generating tags for different versions"""
|
2023-12-04 11:08:40 +00:00
|
|
|
|
|
|
|
# Only one latest can exist
|
|
|
|
latest: ClickHouseVersion
|
|
|
|
# Only one lts version can exist
|
|
|
|
lts: Optional[ClickHouseVersion]
|
|
|
|
|
|
|
|
|
|
|
|
def ldf_header(git: Git, directory: Path) -> List[str]:
|
2024-11-12 15:46:45 +00:00
|
|
|
"Generates the header for LDF"
|
2023-12-04 11:08:40 +00:00
|
|
|
script_path = Path(__file__).relative_to(git.root)
|
|
|
|
script_sha = git_runner(f"git log -1 --format=format:%H -- {script_path}")
|
|
|
|
repo = f"https://github.com/{GITHUB_REPOSITORY}"
|
2024-11-07 13:15:54 +00:00
|
|
|
dl_repo = f"https://github.com/{DOCKER_LIBRARY_REPOSITORY}"
|
|
|
|
fetch_commit = git_runner(
|
|
|
|
f"git -C {directory} log -1 --format=format:%H -- {directory}"
|
|
|
|
)
|
|
|
|
dl_branch = git_runner(f"git -C {directory} branch --show-current")
|
2023-12-04 11:08:40 +00:00
|
|
|
return [
|
|
|
|
f"# The file is generated by {repo}/blob/{script_sha}/{script_path}",
|
|
|
|
"",
|
|
|
|
"Maintainers: Misha f. Shiryaev <felixoid@clickhouse.com> (@Felixoid),",
|
|
|
|
" Max Kainov <max.kainov@clickhouse.com> (@mkaynov),",
|
|
|
|
" Alexander Sapin <alesapin@clickhouse.com> (@alesapin)",
|
2024-11-07 13:15:54 +00:00
|
|
|
f"GitRepo: {dl_repo}.git",
|
|
|
|
f"GitFetch: refs/heads/{dl_branch}",
|
2023-12-04 11:08:40 +00:00
|
|
|
f"GitCommit: {fetch_commit}",
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
def ldf_tags(version: ClickHouseVersion, distro: str, tag_attrs: TagAttrs) -> str:
|
|
|
|
"""returns the string 'Tags: coma, separated, tags'"""
|
|
|
|
tags = []
|
2024-11-12 15:46:45 +00:00
|
|
|
# without_distro shows that it's the default tags set, without `-jammy` suffix
|
2023-12-04 11:08:40 +00:00
|
|
|
without_distro = distro in UBUNTU_NAMES.values()
|
|
|
|
if version == tag_attrs.latest:
|
|
|
|
if without_distro:
|
|
|
|
tags.append("latest")
|
|
|
|
tags.append(distro)
|
|
|
|
|
2024-11-12 15:46:45 +00:00
|
|
|
# The current version gets the `lts` tag when it's the first met version.is_lts
|
|
|
|
with_lts = tag_attrs.lts in (None, version) and version.is_lts
|
2023-12-04 11:08:40 +00:00
|
|
|
if with_lts:
|
|
|
|
tag_attrs.lts = version
|
|
|
|
if without_distro:
|
|
|
|
tags.append("lts")
|
2024-11-12 15:46:45 +00:00
|
|
|
tags.append(f"lts-{distro}")
|
2023-12-04 11:08:40 +00:00
|
|
|
|
2024-11-12 15:46:45 +00:00
|
|
|
# Add all normal tags
|
2023-12-04 11:08:40 +00:00
|
|
|
for tag in (
|
|
|
|
f"{version.major}.{version.minor}",
|
|
|
|
f"{version.major}.{version.minor}.{version.patch}",
|
|
|
|
f"{version.major}.{version.minor}.{version.patch}.{version.tweak}",
|
|
|
|
):
|
|
|
|
if without_distro:
|
|
|
|
tags.append(tag)
|
|
|
|
tags.append(f"{tag}-{distro}")
|
|
|
|
|
|
|
|
return f"Tags: {', '.join(tags)}"
|
|
|
|
|
|
|
|
|
|
|
|
def generate_ldf(args: argparse.Namespace) -> None:
|
2024-11-12 15:46:45 +00:00
|
|
|
"""Collect all args.dockerfile_glob files from args.directory and generate the
|
|
|
|
Library Definition File, read about it in
|
|
|
|
https://github.com/docker-library/official-images/?tab=readme-ov-file#library-definition-files
|
|
|
|
"""
|
2023-12-04 11:08:40 +00:00
|
|
|
directory = Path(git_runner.cwd) / args.directory / args.image_type
|
|
|
|
versions = sorted([get_version_from_string(d.name) for d in directory.iterdir()])
|
2024-11-12 15:46:45 +00:00
|
|
|
assert versions, "There are no directories to generate the LDF"
|
2023-12-08 11:07:13 +00:00
|
|
|
if args.check_changed:
|
2024-11-12 15:46:45 +00:00
|
|
|
assert not path_is_changed(
|
|
|
|
directory
|
|
|
|
), f"There are uncommitted changes in {directory}"
|
2023-12-04 11:08:40 +00:00
|
|
|
git = Git(True)
|
2024-11-12 15:46:45 +00:00
|
|
|
# Support a few repositories, get the git-root for images directory
|
2024-11-07 13:15:54 +00:00
|
|
|
dir_git_root = (
|
|
|
|
args.directory / git_runner(f"git -C {args.directory} rev-parse --show-cdup")
|
|
|
|
).absolute()
|
2023-12-04 11:08:40 +00:00
|
|
|
lines = ldf_header(git, directory)
|
2024-11-20 14:12:58 +00:00
|
|
|
tag_attrs = TagAttrs(versions[-1], None)
|
2024-11-12 15:46:45 +00:00
|
|
|
|
|
|
|
# We iterate from the most recent to the oldest version
|
2023-12-04 11:08:40 +00:00
|
|
|
for version in reversed(versions):
|
|
|
|
tag_dir = directory / str(version)
|
2024-05-06 15:06:49 +00:00
|
|
|
for file in tag_dir.glob(args.dockerfile_glob):
|
2023-12-04 11:08:40 +00:00
|
|
|
lines.append("")
|
|
|
|
distro = file.suffix[1:]
|
|
|
|
if distro == "ubuntu":
|
2024-11-12 15:46:45 +00:00
|
|
|
# replace 'ubuntu' by the release name from UBUNTU_NAMES
|
2023-12-04 11:08:40 +00:00
|
|
|
with open(file, "r", encoding="utf-8") as fd:
|
|
|
|
for l in fd:
|
|
|
|
if l.startswith("FROM ubuntu:"):
|
|
|
|
ubuntu_version = l.split(":")[-1].strip()
|
|
|
|
distro = UBUNTU_NAMES[ubuntu_version]
|
|
|
|
break
|
|
|
|
lines.append(ldf_tags(version, distro, tag_attrs))
|
|
|
|
lines.append("Architectures: amd64, arm64v8")
|
2024-11-07 13:15:54 +00:00
|
|
|
lines.append(f"Directory: {tag_dir.relative_to(dir_git_root)}")
|
2023-12-04 11:08:40 +00:00
|
|
|
lines.append(f"File: {file.name}")
|
|
|
|
|
2024-11-12 15:46:45 +00:00
|
|
|
# For the last '\n' in join
|
2023-12-04 11:08:40 +00:00
|
|
|
lines.append("")
|
|
|
|
ldf_file = (
|
|
|
|
Path(git_runner.cwd) / args.directory / DOCKER_LIBRARY_NAME[args.image_type]
|
|
|
|
)
|
|
|
|
ldf_file.write_text("\n".join(lines))
|
2024-11-10 19:26:31 +00:00
|
|
|
logging.info("The content of LDF file:\n%s", "\n".join(lines))
|
2023-12-04 11:08:40 +00:00
|
|
|
if args.commit and path_is_changed(ldf_file):
|
2024-11-10 19:26:31 +00:00
|
|
|
logging.info("Starting committing or %s file", ldf_file)
|
2024-11-07 13:15:54 +00:00
|
|
|
ldf_dir = ldf_file.parent
|
|
|
|
git_runner(f"git -C {ldf_dir} add {ldf_file}")
|
2023-12-04 11:08:40 +00:00
|
|
|
commit_message = (
|
|
|
|
f"Re-/Generated docker LDF for {args.image_type} image\n\n"
|
|
|
|
f"The file is generated and committed as following:\n{get_cmdline()}"
|
|
|
|
)
|
2024-11-07 13:15:54 +00:00
|
|
|
git_runner(f"{GIT_PREFIX} -C {ldf_dir} commit -F -", input=commit_message)
|
2023-12-04 11:08:40 +00:00
|
|
|
|
|
|
|
|
2023-11-24 16:41:22 +00:00
|
|
|
def main() -> None:
|
|
|
|
args = parse_args()
|
2023-11-28 10:12:46 +00:00
|
|
|
log_levels = [logging.CRITICAL, logging.WARN, logging.INFO, logging.DEBUG]
|
|
|
|
logging.basicConfig(level=log_levels[min(args.verbose, 3)])
|
|
|
|
logging.debug("Arguments are %s", pformat(args.__dict__))
|
2023-11-24 16:41:22 +00:00
|
|
|
if args.command == "generate-tree":
|
|
|
|
generate_tree(args)
|
2023-12-04 11:08:40 +00:00
|
|
|
elif args.command == "generate-ldf":
|
|
|
|
generate_ldf(args)
|
2023-11-24 16:41:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|