2
0
mirror of synced 2025-01-27 16:56:04 +00:00
2023-08-07 15:51:44 +02:00

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;
}
}
}