-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🌱 CAPD webhooks should use 9443 as port
Another change that came up during controller runtime v0.7 investigation, the port that the CAPD container was listening on was 443 instead of the widely used 9443 (all our controllers use this value). Changes the container ports and hardcodes the port in the manager. If we want to expose a flag we can do it separately. Signed-off-by: Vince Prignano <[email protected]>
- Loading branch information
Showing
3 changed files
with
5 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,6 @@ metadata: | |
spec: | ||
ports: | ||
- port: 443 | ||
targetPort: 443 | ||
targetPort: 9443 | ||
selector: | ||
control-plane: controller-manager |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters