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

Allow customizing the controller webhook port #1410

Merged
merged 16 commits into from
May 16, 2022
Merged

Allow customizing the controller webhook port #1410

merged 16 commits into from
May 16, 2022

Conversation

nafarlee
Copy link
Contributor

@nafarlee nafarlee commented May 2, 2022

Closes #1314

I was initially having some issues performing local testing, as the contribution guide and Makefile are (at least in-part) still structured around a make rule (docker-build) that was removed recently. Considering the relatively small scope of this PR, I thought it would be easier to submit it, then go back and fix anything I had missed.

main.go Outdated
@@ -113,6 +114,7 @@ func main() {
flag.StringVar(&c.RunnerGitHubURL, "runner-github-url", c.RunnerGitHubURL, "GitHub URL to be used by runners during registration")
flag.DurationVar(&gitHubAPICacheDuration, "github-api-cache-duration", 0, "DEPRECATED: The duration until the GitHub API cache expires. Setting this to e.g. 10m results in the controller tries its best not to make the same API call within 10m to reduce the chance of being rate-limited. Defaults to mostly the same value as sync-period. If you're tweaking this in order to make autoscaling more responsive, you'll probably want to tweak sync-period, too")
flag.DurationVar(&defaultScaleDownDelay, "default-scale-down-delay", controllers.DefaultScaleDownDelay, "The approximate delay for a scale down followed by a scale up, used to prevent flapping (down->up->down->... loop)")
flag.IntVar(&port, "port", 9443, "The port to which the endpoint should bind")
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
flag.IntVar(&port, "port", 9443, "The port to which the endpoint should bind")
flag.IntVar(&port, "port", 9443, "The port to which the admission webhook endpoint should bind")

We might better clarify it this way so that you can differentiate it from e.g. metrics port!

Copy link
Collaborator

@mumoshu mumoshu left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM. Thanks for your contribution ☺️

@mumoshu mumoshu merged commit 95ddc77 into actions:master May 16, 2022
@mumoshu mumoshu added this to the v0.24.0 milestone May 16, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Allow customizing the controller webhook port
2 participants