commit b4131cbaed60e51203f297e3641800f5fb3b5f26
parent 06c87319ecaeb677add7e3ec1d1f38c31ca80bc0
Author: MTRNord <mtrnord1@gmail.com>
Date: Fri, 25 Aug 2023 12:17:44 +0200
Add missing etcd options
Diffstat:
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/nixos/worker-1/configuration.nix b/nixos/worker-1/configuration.nix
@@ -466,7 +466,10 @@
initialClusterState = "existing";
listenClientUrls = [ "http://100.64.0.1:2379" ];
listenPeerUrls = [ "http://100.64.0.1:2380" ];
- initialCluster = [ "nordgedanken=http://100.64.0.3:2380" ];
+ initialCluster = [
+ "nordgedanken=http://100.64.0.3:2380"
+ "worker-1=http://100.64.0.1:2380"
+ ];
extraConf = {
"UNSUPPORTED_ARCH" = "arm64";
};