-
Notifications
You must be signed in to change notification settings - Fork 277
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
🐛 Fix parsing docker image when the full image name contains registry port #349
Conversation
Your branch is not currently up-to-date with |
Thanks for the fix @ogusak I'm gonna ask the platform team to review this during the week. |
@marcosmarxm - could you check with your team please on reviewing this PR - thanks! |
Hi @marcosmarxm - could someone take a look at this PR. Thanks! |
Can someone from @airbytehq/platform-compose / @airbytehq/platform-move take a look into this small contribution? |
Sorry the delay @ogusak. @jdpgrailsdev can you help reviewing this contribution, thanks! |
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.
Thanks a lot for taking a look, @jdpgrailsdev ! |
/create-oss-pr |
@ogusak I'm not sure why the CI actions didn't catch this, but there appears to be a failing test in this PR:
|
@jdpgrailsdev - thanks for surfacing that error! Fixed it in the latest commit where I restored the original check for null/empty image name in |
/create-oss-pr |
@ogusak This change has been merged into our internal repo and should shortly be replicated to this repo. It will be included in the next release. Let me know if you have any questions. Thanks again for the submission. |
Thanks for letting me know, @jdpgrailsdev! Looking forward to deploying the new Airbyte version with the fix! |
Closing, as this has been merged internally and replicated to this repository. |
Thank a lot, @jdpgrailsdev ! |
What
The existing docker image parsing assumes only a single
:
delimiter in the image name which is used to denote image tag in the image name. However, in a general case, the full image name may contain registry host with port number, which is also delimited with:
.See full description here
How
Parse full image name into version and image name based on the last occurrence of
:
delimiterCan this PR be safely reverted and rolled back?