cs-codex-dist-tests/Framework/KubernetesWorkflow/RunnerLocationUtils.cs

39 lines
1.1 KiB
C#
Raw Normal View History

2023-11-07 15:02:09 +00:00
namespace KubernetesWorkflow
2023-09-11 14:57:57 +00:00
{
internal enum RunnerLocation
{
2023-11-07 11:42:01 +00:00
Unknown,
2023-09-11 14:57:57 +00:00
ExternalToCluster,
InternalToCluster,
}
internal static class RunnerLocationUtils
{
private static RunnerLocation location = RunnerLocation.Unknown;
2023-09-11 14:57:57 +00:00
internal static RunnerLocation GetRunnerLocation()
2023-09-11 14:57:57 +00:00
{
DetermineRunnerLocation();
if (location == RunnerLocation.Unknown) throw new Exception("Runner location is unknown.");
return location;
}
2023-11-07 15:02:09 +00:00
private static void DetermineRunnerLocation()
{
if (location != RunnerLocation.Unknown) return;
var port = Environment.GetEnvironmentVariable("KUBERNETES_PORT");
var host = Environment.GetEnvironmentVariable("KUBERNETES_SERVICE_HOST");
if (string.IsNullOrEmpty(port) || string.IsNullOrEmpty(host))
{
location = RunnerLocation.ExternalToCluster;
}
else
{
location = RunnerLocation.InternalToCluster;
}
}
2023-09-11 14:57:57 +00:00
}
}