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

61 lines
1.6 KiB
C#
Raw Normal View History

2023-09-11 14:57:57 +00:00
using System.Net.NetworkInformation;
using Utils;
namespace KubernetesWorkflow
{
internal enum RunnerLocation
{
ExternalToCluster,
InternalToCluster,
}
internal static class RunnerLocationUtils
{
private static RunnerLocation? knownLocation = null;
internal static RunnerLocation DetermineRunnerLocation(PodInfo info, K8sCluster cluster)
2023-09-11 14:57:57 +00:00
{
if (knownLocation != null) return knownLocation.Value;
knownLocation = PingForLocation(info, cluster);
return knownLocation.Value;
}
2023-09-11 14:57:57 +00:00
private static RunnerLocation PingForLocation(PodInfo podInfo, K8sCluster cluster)
{
if (PingHost(podInfo.Ip))
2023-09-11 14:57:57 +00:00
{
return RunnerLocation.InternalToCluster;
2023-09-11 14:57:57 +00:00
}
if (PingHost(Format(cluster.HostAddress)))
2023-09-11 14:57:57 +00:00
{
return RunnerLocation.ExternalToCluster;
2023-09-11 14:57:57 +00:00
}
throw new Exception("Unable to determine location relative to kubernetes cluster.");
2023-09-11 14:57:57 +00:00
}
private static string Format(string host)
2023-09-11 14:57:57 +00:00
{
return host
2023-09-11 14:57:57 +00:00
.Replace("http://", "")
.Replace("https://", "");
}
private static bool PingHost(string host)
{
try
{
using var pinger = new Ping();
PingReply reply = pinger.Send(host);
return reply.Status == IPStatus.Success;
}
catch (PingException)
{
}
return false;
}
}
}