Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

External manifest for image_loader #426

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Commits on Aug 29, 2024

  1. feat: can supply a manifest file to image_loader

    The manfiest file is a yaml file of the format
    
    images:
       - <image>
    rules:
       - pattern: <pattern to match in image name>
         replace: <replace the pattern match with this string>
    
    Each image name is matched against each rule pattern, and the
    first match will replace the  pattern with the specificed
    replacement string. The replacement may include the string
    {repository} which will be substituted with the contents of
    the command line parameter --repository.
    Jonathan Rosser committed Aug 29, 2024
    Configuration menu
    Copy the full SHA
    ea5f817 View commit details
    Browse the repository at this point in the history
  2. Strip digests from image destinations when in image_loader

    The created registry will not serve an image loaded with a digest.
    Jonathan Rosser committed Aug 29, 2024
    Configuration menu
    Copy the full SHA
    a6f3313 View commit details
    Browse the repository at this point in the history