From 74d455b044dc17f632473b1597015264807a5bb3 Mon Sep 17 00:00:00 2001 From: Tim Raymond Date: Tue, 9 Aug 2022 11:09:16 -0400 Subject: [PATCH] Add missing client paths to CNS Client These were forgotten during a previous effort to add endpoints to the CNS client. Consequently, those endpoints don't actually work unless these paths are present here. --- cns/client/client.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cns/client/client.go b/cns/client/client.go index 488e3ea0de..32cbbbaa86 100644 --- a/cns/client/client.go +++ b/cns/client/client.go @@ -33,6 +33,10 @@ var clientPaths = []string{ cns.PathDebugIPAddresses, cns.PathDebugPodContext, cns.PathDebugRestData, + cns.UnpublishNetworkContainer, + cns.PublishNetworkContainer, + cns.CreateOrUpdateNetworkContainer, + cns.SetOrchestratorType, } type do interface {