mirror of
https://github.com/codex-storage/cs-codex-dist-tests.git
synced 2025-02-04 16:24:22 +00:00
18 lines
377 B
C#
18 lines
377 B
C#
namespace KubernetesWorkflow
|
|
{
|
|
public class KnownK8sPods
|
|
{
|
|
private readonly List<string> knownActivePodNames = new List<string>();
|
|
|
|
public bool Contains(string name)
|
|
{
|
|
return knownActivePodNames.Contains(name);
|
|
}
|
|
|
|
public void Add(string name)
|
|
{
|
|
knownActivePodNames.Add(name);
|
|
}
|
|
}
|
|
}
|