cs-codex-dist-tests/KubernetesWorkflow/PodLabels.cs

18 lines
400 B
C#
Raw Normal View History

2023-08-07 13:51:44 +00:00
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;
}
}
}