From f767307987ed76496ce398e0d390010bc541f5e9 Mon Sep 17 00:00:00 2001 From: Henry Winkel Date: Fri, 11 Aug 2023 14:00:42 +0200 Subject: [PATCH] FIX:fixed missing https --- src/kubecontrol/PodController.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kubecontrol/PodController.cpp b/src/kubecontrol/PodController.cpp index ec12010..044dbee 100644 --- a/src/kubecontrol/PodController.cpp +++ b/src/kubecontrol/PodController.cpp @@ -18,7 +18,7 @@ namespace kubecontrol if (KUBERNETES_SERVICE_HOST != nullptr && KUBERNETES_SERVICE_PORT!= nullptr) { - ServerAddress_ = std::string(KUBERNETES_SERVICE_HOST)+":"+std::string(KUBERNETES_SERVICE_PORT); + ServerAddress_ = "https://" +std::string(KUBERNETES_SERVICE_HOST)+":"+std::string(KUBERNETES_SERVICE_PORT); } else { LOG_S(INFO)<<"Taking Serveraddress out of the provided YAML file";