mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-10 17:33:13 +00:00
18 lines
400 B
C#
18 lines
400 B
C#
namespace KubernetesWorkflow
|
|
{
|
|
public class PodLabels
|
|
{
|
|
private readonly Dictionary<string, string> labels = new Dictionary<string, string>();
|
|
|
|
public void Add(string key, string value)
|
|
{
|
|
labels.Add(key, value.ToLowerInvariant());
|
|
}
|
|
|
|
internal Dictionary<string, string> GetLabels()
|
|
{
|
|
return labels;
|
|
}
|
|
}
|
|
}
|