-
Notifications
You must be signed in to change notification settings - Fork 100
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
feat: print the port chosen by kernel if port is unspecified #720
Conversation
@@ -170,6 +170,11 @@ func (c *Controller) Run(reloadCtx context.Context) error { | |||
return err | |||
} | |||
|
|||
if c.Config.HTTP.Port == "0" || c.Config.HTTP.Port == "" { |
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.
right side of the condition is never true because zot will have the port 8080 as default
Thanks for the PR. Just FYI, we require our commits to be git Signed-off-by and gpg signed. |
Thanks for the heads-up. I'll fix that. |
Hi @thesayyn Do you plan to update the PR to fix the failures or shall we takeover your PR ? |
Feel free to take over. Due to #724, I am stuck on using zot. |
Signed-off-by: thesayyn <[email protected]>
Based off of the PR by @thesayyn project-zot#720 Signed-off-by: Ramkumar Chinchani <[email protected]>
Pls see #770 |
Based off of the PR by @thesayyn project-zot#720 Signed-off-by: Ramkumar Chinchani <[email protected]>
Based off of the PR by @thesayyn project-zot#720 Signed-off-by: Ramkumar Chinchani <[email protected]>
Based off of the PR by @thesayyn project-zot#720 Signed-off-by: Ramkumar Chinchani <[email protected]>
Based off of the PR by @thesayyn #720 Signed-off-by: Ramkumar Chinchani <[email protected]>
closing in favor of #770 |
What type of PR is this?
feature
Which issue does this PR fix:
#717
What does this PR do / Why do we need it:
If an issue # is not available please add repro steps and logs showing the issue:
Testing done on this change:
Automation added to e2e:
Will this break upgrades or downgrades?
No
Does this PR introduce any user-facing change?:
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.