From a9e2d611756839ff4edd4007142081fbe6086d17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Graber?= Date: Mon, 19 Jun 2023 14:06:23 -0400 Subject: [PATCH] ovn: Use SSL as required by current edge snap MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Stéphane Graber --- microcloud/cmd/microcloud/main_init.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/microcloud/cmd/microcloud/main_init.go b/microcloud/cmd/microcloud/main_init.go index c6df6a4c..94d0ca3f 100644 --- a/microcloud/cmd/microcloud/main_init.go +++ b/microcloud/cmd/microcloud/main_init.go @@ -439,7 +439,7 @@ func postClusterSetup(bootstrap bool, sh *service.ServiceHandler, peers map[stri addr = peers[service.Location].Address } - conns = append(conns, fmt.Sprintf("tcp:%s", util.CanonicalNetworkAddress(addr, 6641))) + conns = append(conns, fmt.Sprintf("ssl:%s", util.CanonicalNetworkAddress(addr, 6641))) } }