FIX:fixed missing https
This commit is contained in:
@@ -18,7 +18,7 @@ namespace kubecontrol
|
|||||||
|
|
||||||
if (KUBERNETES_SERVICE_HOST != nullptr && KUBERNETES_SERVICE_PORT!= nullptr)
|
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
|
} else
|
||||||
{
|
{
|
||||||
LOG_S(INFO)<<"Taking Serveraddress out of the provided YAML file";
|
LOG_S(INFO)<<"Taking Serveraddress out of the provided YAML file";
|
||||||
|
|||||||
Reference in New Issue
Block a user