mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-02 13:33:07 +00:00
18 lines
376 B
C#
18 lines
376 B
C#
namespace CodexDistTestCore
|
|
{
|
|
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);
|
|
}
|
|
}
|
|
}
|