From 859eaea5c42fbef4dcbee5f1f3605203845946d4 Mon Sep 17 00:00:00 2001 From: Kyle Havlovitz Date: Wed, 20 Jun 2018 15:02:31 -0700 Subject: [PATCH] connect/ca: pull the cluster ID from config during a rotation --- agent/consul/connect_ca_endpoint.go | 1 + 1 file changed, 1 insertion(+) diff --git a/agent/consul/connect_ca_endpoint.go b/agent/consul/connect_ca_endpoint.go index 9739bfeda..47672ee55 100644 --- a/agent/consul/connect_ca_endpoint.go +++ b/agent/consul/connect_ca_endpoint.go @@ -81,6 +81,7 @@ func (s *ConnectCA) ConfigurationSet( if err != nil { return err } + args.Config.ClusterID = config.ClusterID if args.Config.Provider == config.Provider && reflect.DeepEqual(args.Config.Config, config.Config) { return nil }