Closed golanha closed 1 year ago
In task executor we turn the value sent to node selector in to an array, we should check its not an array already befor we do that:
making v an array : [v] see: Object.entries(nodeSelector).forEach(([k, v]) => { matchExpressions.push({ key: k, operator: 'In', values: [v] }); });
Object.entries(nodeSelector).forEach(([k, v]) => { matchExpressions.push({ key: k, operator: 'In', values: [v] }); });
In task executor we turn the value sent to node selector in to an array, we should check its not an array already befor we do that:
making v an array : [v] see:
Object.entries(nodeSelector).forEach(([k, v]) => { matchExpressions.push({ key: k, operator: 'In', values: [v] }); });