in code/KubernetesWrapper/KubernetesWrapper/Util.cs [90:104]
public static List<string> GetNodeList(string? ccp_nodes)
{
string[] splitted = SplitStringBySpaces(ccp_nodes);
int length = 0;
if (splitted.Length != 0)
{
length = Int32.TryParse(splitted[0], out length) ? length : 0;
}
List<string> nodes = [];
for (int i = 0; i < length; i++)
{
nodes.Add(splitted[2 * i + 1].ToLower());
}
return nodes;
}