@@ -24298,6 +24298,7 @@ components:
24298
24298
type: integer
24299
24299
minimum: 1
24300
24300
maximum: 65535
24301
+ default: 80
24301
24302
description: >
24302
24303
The port this Config is for. These values must be unique across configs
24303
24304
on a single NodeBalancer (you can't have two configs for port 80, for
@@ -24313,6 +24314,7 @@ components:
24313
24314
- http
24314
24315
- https
24315
24316
- tcp
24317
+ default: http
24316
24318
description: >
24317
24319
The protocol this port is configured to serve.
24318
24320
@@ -24327,6 +24329,7 @@ components:
24327
24329
- roundrobin
24328
24330
- leastconn
24329
24331
- source
24332
+ default: roundrobin
24330
24333
description: >
24331
24334
What algorithm this NodeBalancer should use for routing traffic to backends.
24332
24335
example: roundrobin
@@ -24337,6 +24340,7 @@ components:
24337
24340
- none
24338
24341
- table
24339
24342
- http_cookie
24343
+ default: none
24340
24344
description: >
24341
24345
Controls how session stickiness is handled on this port.
24342
24346
@@ -24356,6 +24360,7 @@ components:
24356
24360
- connection
24357
24361
- http
24358
24362
- http_body
24363
+ default: none
24359
24364
description: >
24360
24365
The type of check to perform against backends to ensure they are serving
24361
24366
requests. This is used to determine if backends are up or down.
@@ -24369,20 +24374,27 @@ components:
24369
24374
example: http_body
24370
24375
check_interval:
24371
24376
type: integer
24372
- description: >
24377
+ description: |
24373
24378
How often, in seconds, to check that backends are up and serving requests.
24379
+
24380
+ Must be greater than `check_timeout`.
24374
24381
example: 90
24382
+ default: 31
24375
24383
check_timeout:
24376
24384
type: integer
24377
24385
minimum: 1
24378
24386
maximum: 30
24379
- description: >
24387
+ default: 30
24388
+ description: |
24380
24389
How long, in seconds, to wait for a check attempt before considering it failed.
24390
+
24391
+ Must be less than `check_interval`.
24381
24392
example: 10
24382
24393
check_attempts:
24383
24394
type: integer
24384
24395
minimum: 1
24385
24396
maximum: 30
24397
+ default: 3
24386
24398
description: >
24387
24399
How many times to attempt a check before considering a backend to be down.
24388
24400
example: 3
@@ -24402,6 +24414,7 @@ components:
24402
24414
example: it works
24403
24415
check_passive:
24404
24416
type: boolean
24417
+ default: true
24405
24418
description: >
24406
24419
If true, any response from this backend with a `5xx` status code will be
24407
24420
enough for it to be considered unhealthy and taken out of rotation.
@@ -24433,6 +24446,7 @@ components:
24433
24446
enum:
24434
24447
- recommended
24435
24448
- legacy
24449
+ default: recommended
24436
24450
description: >
24437
24451
What ciphers to use for SSL connections served by this NodeBalancer.
24438
24452
0 commit comments