Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,17 @@ Next, configure `externalServers` to point it to Consul servers.
The `externalServers.hosts` value must be provided and should be set to a DNS, an IP,
or an `exec=` string with a command returning Consul IPs. Please see [this documentation](https://github.com/hashicorp/go-netaddrs)
on how the `exec=` string works.
For example, to specify multiple static IPs, use the `exec=` string:

<CodeBlockConfig filename="values.yaml">

```yaml
externalServers:
hosts: ["exec=echo 192.0.2.10 192.0.2.11 192.0.2.12"]
```

</CodeBlockConfig>

Other values in the `externalServers` section are optional. Please refer to
[Helm Chart configuration](/consul/docs/k8s/helm#h-externalservers) for more details.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,17 @@ Next, configure `externalServers` to point it to Consul servers.
The `externalServers.hosts` value must be provided and should be set to a DNS, an IP,
or an `exec=` string with a command returning Consul IPs. Please see [this documentation](https://github.com/hashicorp/go-netaddrs)
on how the `exec=` string works.
For example, to specify multiple static IPs, use the `exec=` string:

<CodeBlockConfig filename="values.yaml">

```yaml
externalServers:
hosts: ["exec=echo 192.0.2.10 192.0.2.11 192.0.2.12"]
```

</CodeBlockConfig>

Other values in the `externalServers` section are optional. Please refer to
[Helm Chart configuration](/consul/docs/reference/k8s/helm#h-externalservers) for more details.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,17 @@ Next, configure `externalServers` to point it to Consul servers.
The `externalServers.hosts` value must be provided and should be set to a DNS, an IP,
or an `exec=` string with a command returning Consul IPs. Please see [this documentation](https://github.com/hashicorp/go-netaddrs)
on how the `exec=` string works.
For example, to specify multiple static IPs, use the `exec=` string:

<CodeBlockConfig filename="values.yaml">

```yaml
externalServers:
hosts: ["exec=echo 192.0.2.10 192.0.2.11 192.0.2.12"]
```

</CodeBlockConfig>

Other values in the `externalServers` section are optional. Please refer to
[Helm Chart configuration](/consul/docs/reference/k8s/helm#h-externalservers) for more details.

Expand Down
Loading