36 lines
968 B
C#
36 lines
968 B
C#
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 $"[{RunningPod.Ip}]";
|
|
}
|
|
}
|
|
|
|
public class RunningContainer
|
|
{
|
|
public RunningContainer(RunningPod pod, ContainerRecipe recipe, Port[] servicePorts)
|
|
{
|
|
Pod = pod;
|
|
Recipe = recipe;
|
|
ServicePorts = servicePorts;
|
|
}
|
|
|
|
public RunningPod Pod { get; }
|
|
public ContainerRecipe Recipe { get; }
|
|
public Port[] ServicePorts { get; }
|
|
}
|
|
}
|