10 lines
175 B
Nix
10 lines
175 B
Nix
{ ... }:
|
|
{
|
|
# Enable server mode for both Consul and Nomad
|
|
# Used by: c1, c2, c3 (quorum members)
|
|
clusterRole = {
|
|
consulServer = true;
|
|
nomadServer = true;
|
|
};
|
|
}
|