Skip to content

Commit 740a1ef

Browse files
committed
docs: fix typo
1 parent bfff6c5 commit 740a1ef

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

docs/reference/load_balancer_envs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ This page contains all environment variables, which can be specified to configur
66

77
| Annotation | Type | Default | Description |
88
| --- | --- | --- | --- |
9-
| `HCLOUD_LOAD_BALANCERS_ALGORITHM_TYPE` | `round_robin \| least_connections` | `round_robin` | Configures the defult Load Balancer algorithm. |
9+
| `HCLOUD_LOAD_BALANCERS_ALGORITHM_TYPE` | `round_robin \| least_connections` | `round_robin` | Configures the default Load Balancer algorithm. |
1010
| `HCLOUD_LOAD_BALANCERS_DISABLE_IPV6` | `bool` | `false` | Disables the use of IPv6 for the Load Balancer by default. |
1111
| `HCLOUD_LOAD_BALANCERS_DISABLE_PRIVATE_INGRESS` | `bool` | `false` | Disables the use of the private network for ingress by default. |
1212
| `HCLOUD_LOAD_BALANCERS_DISABLE_PUBLIC_NETWORK` | `bool` | `false` | Disables the public interface of the Load Balancer by default. |
1313
| `HCLOUD_LOAD_BALANCERS_ENABLED` | `bool` | `true` | Controls whether the load balancer controller of HCCM should run. |
1414
| `HCLOUD_LOAD_BALANCERS_HEALTH_CHECK_INTERVAL` | `int` | `10` | Configures the default time interval in seconds in which health checks are performed. |
1515
| `HCLOUD_LOAD_BALANCERS_HEALTH_CHECK_RETRIES` | `int` | `3` | Configures the default amount of unsuccessful retries needed until a target is considered unhealthy. |
16-
| `HCLOUD_LOAD_BALANCERS_HEALTH_CHECK_TIMEOUT` | `int` | `15` | Configures the defult time in seconds after an attempt is considered a timeout. |
16+
| `HCLOUD_LOAD_BALANCERS_HEALTH_CHECK_TIMEOUT` | `int` | `15` | Configures the default time in seconds after an attempt is considered a timeout. |
1717
| `HCLOUD_LOAD_BALANCERS_LOCATION` | `string` | `-` | Specifies the default location where the Load Balancer will be created in. Mutually exclusive with hcloudLoadBalancersNetworkZone. |
1818
| `HCLOUD_LOAD_BALANCERS_NETWORK_ZONE` | `string` | `-` | Specifies the default network zone where the Load Balancer will be created in. Mutually exclusive with hcloudLoadBalancersLocation. |
1919
| `HCLOUD_LOAD_BALANCERS_PRIVATE_SUBNET_IP_RANGE` | `string` | `-` | Configures the default IP range in CIDR block notation of the subnet to attach to. |

internal/config/load_balancer_envs.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ const (
4242
// Default: false
4343
hcloudLoadBalancersDisableIPv6 = "HCLOUD_LOAD_BALANCERS_DISABLE_IPV6"
4444

45-
// hcloudLoadBalancersAlgorithmType configures the defult Load Balancer algorithm.
45+
// hcloudLoadBalancersAlgorithmType configures the default Load Balancer algorithm.
4646
//
4747
// Type: round_robin | least_connections
4848
// Default: round_robin
@@ -68,7 +68,7 @@ const (
6868
// Default: 3
6969
hcloudLoadBalancersHealthCheckRetries = "HCLOUD_LOAD_BALANCERS_HEALTH_CHECK_RETRIES"
7070

71-
// hcloudLoadBalancersHealthCheckTimeout configures the defult time in seconds after an attempt is
71+
// hcloudLoadBalancersHealthCheckTimeout configures the default time in seconds after an attempt is
7272
// considered a timeout.
7373
//
7474
// Type: int

0 commit comments

Comments
 (0)