data-mesher 🔹
Set up data-mesher
Categories
Usage via Inventory
Roles
This module can be used via predefined roles
- `admin`
- `peer`
- `signer`
Every role has its own configuration options. Which are each listed below.
For more information, see the inventory guide.
Example
For example the admin
module adds the following options globally to all machines where it is used.
clan.admin.allowedkeys
This means there are two equivalent ways to set the allowedkeys
option. Either via a nixos module or via the inventory interface.
But it is recommended to keep together imports
and config
to preserve locality of the module configuration.
Options of admin
role
The following options are available when using the admin
role.
bootstrapNodes
A list of bootstrap nodes that act as an initial gateway when joining the cluster.
Type: null or (list of string)
Default:
network.hostTTL
The TTL for hosts in the network, in the form of a Go time.Duration
Type: string
Default:
network.interface
The interface over which cluster communication should be performed. All the ip addresses associate with this interface will be part of our host claim, including both ipv4 and ipv6.
This should be set to an internal/VPN interface.
Type: string
network.port
Port to listen on for cluster communication.
Type: 16 bit unsigned integer; between 0 and 65535 (both inclusive)
Default:
network.tld
Top level domain to use for the network
Type: string
Default:
Options of peer
role
The following options are available when using the peer
role.
bootstrapNodes
A list of bootstrap nodes that act as an initial gateway when joining the cluster.
Type: null or (list of string)
Default:
network.interface
The interface over which cluster communication should be performed. All the ip addresses associate with this interface will be part of our host claim, including both ipv4 and ipv6.
This should be set to an internal/VPN interface.
Type: string
network.port
Port to listen on for cluster communication.
Type: 16 bit unsigned integer; between 0 and 65535 (both inclusive)
Default:
Options of signer
role
The following options are available when using the signer
role.
bootstrapNodes
A list of bootstrap nodes that act as an initial gateway when joining the cluster.
Type: null or (list of string)
Default:
network.interface
The interface over which cluster communication should be performed. All the ip addresses associate with this interface will be part of our host claim, including both ipv4 and ipv6.
This should be set to an internal/VPN interface.
Type: string
network.port
Port to listen on for cluster communication.
Type: 16 bit unsigned integer; between 0 and 65535 (both inclusive)
Default:
Usage via Nix
This module cannot be imported directly in your nixos configuration.