From 4504138a4a618815dadaca81c129f97986ac9728 Mon Sep 17 00:00:00 2001 From: Ned Wright Date: Mon, 22 Apr 2024 09:46:50 +0000 Subject: [PATCH] Change all deployments to embedded --- .../orchestration/update_communication/fog_authenticator.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/security_apps/orchestration/update_communication/fog_authenticator.cc b/components/security_apps/orchestration/update_communication/fog_authenticator.cc index e2c610c..d51af97 100755 --- a/components/security_apps/orchestration/update_communication/fog_authenticator.cc +++ b/components/security_apps/orchestration/update_communication/fog_authenticator.cc @@ -450,9 +450,9 @@ getDeplymentType() auto deplyment_type = Singleton::Consume::by()->getEnvType(); switch (deplyment_type) { case EnvType::LINUX: return "Embedded"; - case EnvType::DOCKER: return "Docker"; + case EnvType::DOCKER: return "Embedded"; case EnvType::NON_CRD_K8S: - case EnvType::K8S: return "K8S"; + case EnvType::K8S: return "Embedded"; case EnvType::COUNT: break; }