From e79ea3010332258d6c5f1f21119bcbfbcb50ca54 Mon Sep 17 00:00:00 2001 From: Diamon Wiggins <38189728+diamonwiggins@users.noreply.github.com> Date: Fri, 20 Oct 2023 10:16:10 -0600 Subject: [PATCH] chore: change embedded cluster config map namespace (#4100) * implement 'IsHelmVM' function based on presence of configmap if embedded-cluster-config exists in kube-system it is helmvm * change namespace of embedded cluster config --------- Co-authored-by: Andrew Lavery --- pkg/helmvm/util.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/helmvm/util.go b/pkg/helmvm/util.go index 65d93f0c9f..87b6bfe285 100644 --- a/pkg/helmvm/util.go +++ b/pkg/helmvm/util.go @@ -11,7 +11,7 @@ import ( ) const configMapName = "embedded-cluster-config" -const configMapNamespace = "kube-system" +const configMapNamespace = "embedded-cluster" // ReadConfigMap will read the Kurl config from a configmap func ReadConfigMap(client kubernetes.Interface) (*corev1.ConfigMap, error) {