Skip to content

Commit 66a6d22

Browse files
committed
Described all router environment variables
Added missing router environment variables to the documentation, and added descriptons to all of them. For 3.4 only.
1 parent 141cb64 commit 66a6d22

File tree

1 file changed

+45
-11
lines changed

1 file changed

+45
-11
lines changed

architecture/core_concepts/routes.adoc

+45-11
Original file line numberDiff line numberDiff line change
@@ -186,21 +186,46 @@ addresses; because of the NAT configuration, the originating IP address
186186

187187
*Configuration Parameters*
188188

189-
With all the items outlined in this section, you should be able to set environment
189+
For all the items outlined in this section, you can set environment
190190
variables on the *deployment config* for the router to alter its configuration.
191191

192192
.Router Configuration Parameters
193-
[cols="2*", options="header"]
193+
[cols="3*", options="header"]
194194
|===
195-
|Variable | Default
196-
|`*ROUTER_SYSLOG_ADDRESS*` | ""
197-
|`*ROUTER_LOG_LEVEL*` | warning
198-
|`*ROUTER_BACKEND_CHECK_INTERVAL*` | 5000ms
199-
|`*ROUTER_DEFAULT_CONNECT_TIMEOUT*`| 5s
200-
|`*ROUTER_DEFAULT_CLIENT_TIMEOUT*`| 30s
201-
|`*ROUTER_DEFAULT_SERVER_TIMEOUT*`| 30s
202-
|`*ROUTER_DEFAULT_TUNNEL_TIMEOUT*` | 1h
203-
|`*ROUTER_SLOWLORIS_TIMEOUT*` | 10s
195+
|Variable | Default | Description
196+
|`*DEFAULT_CERTIFICATE*` | | The contents of a default certificate to use for routes that don't expose a TLS server cert; in PEM format.
197+
|`*DEFAULT_CERTIFICATE_DIR*` | | A path to a directory that contains a file named tls.crt. If tls.crt is not a PEM file which also contains a private key, it is first combined with a file named tls.key in the same directory. The PEM-format contents are then used as the default certificate. Only used if DEFAULT_CERTIFICATE or DEFAULT_CERTIFICATE_PATH are not specified.
198+
|`*DEFAULT_CERTIFICATE_PATH*` | | A path to default certificate to use for routes that don't expose a TLS server cert; in PEM format. Only used if DEFAULT_CERTIFICATE is not specified.
199+
|`*EXTENDED_VALIDATION*` | true | Whether to perform an additional extended validation step on all routes admitted by this router.
200+
|`*NAMESPACE_LABELS*` | | A label selector to apply to namespaces to watch, empty means all.
201+
|`*PROJECT_LABELS*` | | A label selector to apply to projects to watch, emtpy means all.
202+
|`*RELOAD_SCRIPT*` | | The path to the reload script to use to reload the router.
203+
|`*ROUTER_BACKEND_CHECK_INTERVAL*` | 5000ms | Time interval between subsequent "liveness" checks on backends.
204+
|`*ROUTER_COMPRESSION_MIME*` | "text/html text/plain text/css" | A space separated list of mime types to compress.
205+
|`*ROUTER_DEFAULT_CLIENT_TIMEOUT*`| 30s | Time interval within which a client has to acknowledge or send data.
206+
|`*ROUTER_DEFAULT_CONNECT_TIMEOUT*`| 5s | The maximum connect time.
207+
|`*ROUTER_DEFAULT_SERVER_TIMEOUT*`| 30s | Time interval within which a server has to acknowledge or send data.
208+
|`*ROUTER_DEFAULT_TUNNEL_TIMEOUT*` | 1h | Time interval to allow TCP or WebSocket connections to remain open.
209+
|`*ROUTER_ENABLE_COMPRESSION*`| false | If "true", compress responses when possible.
210+
|`*ROUTER_LOG_LEVEL*` | warning | The log level to send to the syslog server.
211+
|`*ROUTER_OVERRIDE_HOSTNAME*`| | If set, override the spec.host value for a route with the template in ROUTER_SUBDOMAIN.
212+
|`*ROUTER_SERVICE_HTTPS_PORT*` | 443 | Port to listen for https requests.
213+
|`*ROUTER_SERVICE_HTTP_PORT*` | 80 | Port to listen for http requests.
214+
|`*ROUTER_SERVICE_NAME*` | public | The name that the router will identify itself with in route statuses.
215+
|`*ROUTER_SERVICE_NAMESPACE*` | | The namespace the router will identify itself with in route statuses. Required if ROUTER_SERVICE_NAME is used.
216+
|`*ROUTER_SERVICE_NO_SNI_PORT*` | 10443 | Internal port for some front-end to back-end communication (see note below).
217+
|`*ROUTER_SERVICE_SNI_PORT*` | 10444 | Internal port for some front-end to back-end communication (see note below).
218+
|`*ROUTER_SLOWLORIS_TIMEOUT*` | 10s | How long the transmission of an HTTP request can take.
219+
|`*ROUTER_SUBDOMAIN*`| | The template that should be used to generate the hostname for a route without spec.host (e.g. '${name}-${namespace}.myapps.mycompany.com').
220+
|`*ROUTER_SYSLOG_ADDRESS*` | | Where to send log messages. Disabled if empty.
221+
|`*ROUTER_TCP_BALANCE_SCHEME*` | source | How to load-balance multiple endpoints for pass-through routes. Either "source", "roundrobin", or "leastconn".
222+
|`*ROUTE_FIELDS*` | | A field selector to apply to routes to watch, empty means all.
223+
|`*ROUTE_LABELS*` | | A label selector to apply to the routes to watch, empty means all.
224+
|`*STATS_PASSWORD*` | | The password needed to access router stats (if the router implementation supports it).
225+
|`*STATS_PORT*` | | What port to expose statistics on (if the router implementation supports it). If not set, stats are not exposed.
226+
|`*STATS_USERNAME*` | | The username needed to access router stats (if the router implementation supports it).
227+
|`*TEMPLATE_FILE*` | /var/lib/haproxy/conf/custom/haproxy-config-custom.template | The path to the haproxy template file (in the image).
228+
|`*RELOAD_INTERVAL*` | 12s | The minimum frequency the router is allowed to reload to accept new changes.
204229
|===
205230

206231
As an example, you can apply the parameters listed using the example:
@@ -209,6 +234,15 @@ As an example, you can apply the parameters listed using the example:
209234
$ oc env dc/router HAPROXY_ROUTER_SYSLOG_ADDRESS=127.0.0.1 HAPROXY_ROUTER_LOG_LEVEL=debug
210235
----
211236

237+
[NOTE]
238+
====
239+
If you want to run multiple routers on the same machine you must
240+
change the ports that the router is listening on, and
241+
`ROUTER_SERVICE_SNI_PORT` and `ROUTER_SERVICE_NO_SNI_PORT`. These can
242+
be anything you want as long as they are unique on the machine. The ports will
243+
not be exposed externally.
244+
====
245+
212246
[[f5-router]]
213247
=== F5 Router
214248

0 commit comments

Comments
 (0)