71 lines
2.2 KiB
C#
71 lines
2.2 KiB
C#
using Newtonsoft.Json;
|
|
using Utils;
|
|
|
|
namespace KubernetesWorkflow
|
|
{
|
|
public class RunningContainers
|
|
{
|
|
public RunningContainers(StartupConfig startupConfig, RunningPod runningPod, RunningContainer[] containers)
|
|
{
|
|
StartupConfig = startupConfig;
|
|
RunningPod = runningPod;
|
|
Containers = containers;
|
|
}
|
|
|
|
public StartupConfig StartupConfig { get; }
|
|
public RunningPod RunningPod { get; }
|
|
public RunningContainer[] Containers { get; }
|
|
|
|
public string Describe()
|
|
{
|
|
return string.Join(",", Containers.Select(c => c.Name));
|
|
}
|
|
}
|
|
|
|
public class RunningContainer
|
|
{
|
|
public RunningContainer(RunningPod pod, ContainerRecipe recipe, Port[] servicePorts, string name, Address clusterExternalAddress, Address clusterInternalAddress)
|
|
{
|
|
Pod = pod;
|
|
Recipe = recipe;
|
|
ServicePorts = servicePorts;
|
|
Name = name;
|
|
ClusterExternalAddress = clusterExternalAddress;
|
|
ClusterInternalAddress = clusterInternalAddress;
|
|
}
|
|
|
|
public string Name { get; }
|
|
public RunningPod Pod { get; }
|
|
public ContainerRecipe Recipe { get; }
|
|
public Port[] ServicePorts { get; }
|
|
public Address ClusterExternalAddress { get; }
|
|
public Address ClusterInternalAddress { get; }
|
|
|
|
[JsonIgnore]
|
|
public Address Address
|
|
{
|
|
get
|
|
{
|
|
if (RunnerLocationUtils.DetermineRunnerLocation(this) == RunnerLocation.InternalToCluster)
|
|
{
|
|
return ClusterInternalAddress;
|
|
}
|
|
return ClusterExternalAddress;
|
|
}
|
|
}
|
|
}
|
|
|
|
public static class RunningContainersExtensions
|
|
{
|
|
public static RunningContainer[] Containers(this RunningContainers[] runningContainers)
|
|
{
|
|
return runningContainers.SelectMany(c => c.Containers).ToArray();
|
|
}
|
|
|
|
public static string Describe(this RunningContainers[] runningContainers)
|
|
{
|
|
return string.Join(",", runningContainers.Select(c => c.Describe()));
|
|
}
|
|
}
|
|
}
|