You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By default the router binds ports 80 and 443 even if no routing
configuration is available. This may be desirable when haproxy is
serving traffic directly to clients. However, the f5 loadbalancer will
treat bound ports as indicating that a backend is ready to receive
traffic. This means that router pods that are starting or restarting
may be put into rotation before they are ready to serve the current
route state and clients may see 503s for perfectly healthy backend
endpoints. To avoid this possibility, this change adds an
option (BIND_ONLY_WHEN_READY/--bind-only-when-ready) to the router that
ensures that ports are bound only when a router instance has route and
endpoint state available.
Reference: bz1383663
Copy file name to clipboardexpand all lines: pkg/cmd/infra/router/template.go
+3
Original file line number
Diff line number
Diff line change
@@ -62,6 +62,7 @@ type TemplateRouter struct {
62
62
DefaultCertificateDirstring
63
63
ExtendedValidationbool
64
64
RouterService*ktypes.NamespacedName
65
+
BindPortsAfterSyncbool
65
66
}
66
67
67
68
// reloadInterval returns how often to run the router reloads. The interval
@@ -86,6 +87,7 @@ func (o *TemplateRouter) Bind(flag *pflag.FlagSet) {
86
87
flag.StringVar(&o.ReloadScript, "reload", util.Env("RELOAD_SCRIPT", ""), "The path to the reload script to use")
87
88
flag.DurationVar(&o.ReloadInterval, "interval", reloadInterval(), "Controls how often router reloads are invoked. Mutiple router reload requests are coalesced for the duration of this interval since the last reload time.")
88
89
flag.BoolVar(&o.ExtendedValidation, "extended-validation", util.Env("EXTENDED_VALIDATION", "true") =="true", "If set, then an additional extended validation step is performed on all routes admitted in by this router. Defaults to true and enables the extended validation checks.")
90
+
flag.BoolVar(&o.BindPortsAfterSync, "bind-ports-after-sync", util.Env("ROUTER_BIND_PORTS_AFTER_SYNC", "") =="true", "Bind ports only after route state has been synchronized")
89
91
}
90
92
91
93
typeRouterStatsstruct {
@@ -188,6 +190,7 @@ func (o *TemplateRouterOptions) Run() error {
0 commit comments