Improve text in tagging files

This commit is contained in:
Ayaz Salikhov
2023-11-07 00:38:23 +01:00
parent 5f8f5b6433
commit 3badd8f21c
3 changed files with 6 additions and 6 deletions

View File

@@ -22,8 +22,8 @@ def apply_tags(
platform: str,
) -> None:
"""
Tags <owner>/<short_image_name>:latest with the tags
reported by all taggers for the given image.
Tags <registry>/<owner>/<short_image_name>:latest with the tags reported by all taggers for this image
Then removes latest tag
"""
LOGGER.info(f"Tagging image: {short_image_name}")

View File

@@ -97,19 +97,19 @@ if __name__ == "__main__":
"--wiki-dir",
required=True,
type=Path,
help="Directory for wiki repo",
help="Directory of the wiki repo",
)
arg_parser.add_argument(
"--hist-line-dir",
required=True,
type=Path,
help="Directory to save history line",
help="Directory with history lines",
)
arg_parser.add_argument(
"--manifest-dir",
required=True,
type=Path,
help="Directory to save manifest file",
help="Directory with manifest files",
)
args = arg_parser.parse_args()

View File

@@ -19,7 +19,7 @@ def write_tags_file(
tags_dir: Path,
) -> None:
"""
Writes tags file for the image <owner>/<short_image_name>:latest
Writes tags file for the image <registry>/<owner>/<short_image_name>:latest
"""
LOGGER.info(f"Tagging image: {short_image_name}")
taggers, _ = get_taggers_and_manifests(short_image_name)