-
Notifications
You must be signed in to change notification settings - Fork 93
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
Allow extra tags to be provided for tagging the manifest list #32
Conversation
docker/createml.go
Outdated
return "", fmt.Errorf("Registry push unsuccessful: response %d: %s", resp.StatusCode, resp.Status) | ||
} | ||
// if the YAML includes additional tags, push the added tag references. No other work | ||
// should be required as we have already |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Was this comment intended to sound like a cliffhanger? (feels like it ends in the middle of a sentence)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Building up interest sometimes takes introducing a bit of PR-style mystery around things ;) =)
Real story: saw that I forgot to type the rest, got hungry for lunch and decided I could take care of pushing an update later :)
I can definitely work with this, no problem!!! ❤️ ❤️ ❤️ This should give us a really dramatic speedup! (Now I want the same thing for |
Provide the ability to add "tags: [ .. ]" to the input YAML with a list of additional tags to push to the registry against the manifest list object being pushed. Signed-off-by: Phil Estes <[email protected]>
Not too far-fetched.. basically I would call it something like |
Yeah, that'd be awesome, and it looks like @StefanScherer figured out how to make it do exactly that (docker/cli#138 (comment))! 😄 We spend a lot of time doing |
it'd be great to have that feature reflected in the |
Can we add additional tags using the "manifest-tool push from-args ..." command? |
@nitkon this would require a PR to connect a new flag ( |
Provide the ability to add "tags: [ .. ]" to the input YAML with a list
of additional tags to push to the registry against the manifest list
object being pushed.
Signed-off-by: Phil Estes [email protected]
Fixes: #23
And..seems to work :)