import _ from 'lodash-es';
class KubernetesFormValidationHelper {
static getInvalidKeys(names) {
const res = {};
_.forEach(names, (name, index) => {
const valid = /^[-._a-zA-Z0-9]+$/.test(name);
if (!valid) {
res[index] = true;
}
});
return res;
static getDuplicates(names) {
const grouped = _.groupBy(names);
if (name && grouped[name].length > 1) {
res[index] = name;
static getDuplicateNodePorts(serviceNodePorts, allOtherNodePorts) {
serviceNodePorts.forEach((sNodePort, index) => {
if (allOtherNodePorts.includes(sNodePort) || serviceNodePorts.filter((snp) => snp === sNodePort).length > 1) {
res[index] = sNodePort;
export default KubernetesFormValidationHelper;