@openshift-assisted/ui-lib
Version:
React component library for the Assisted Installer UI
26 lines • 2.23 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getNodepoolAgents = void 0;
const CLUSTER_NAME_LABEL = 'cluster.x-k8s.io/cluster-name';
const NODEPOOL_NAME_ANNOTATION = 'hypershift.openshift.io/nodePool';
const getNodepoolAgents = (nodePool, agents, agentMachines, hostedCluster) => {
const nodePoolAgentMachines = agentMachines
.filter((am) => {
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o;
return ((_a = am.metadata) === null || _a === void 0 ? void 0 : _a.namespace) ===
`${((_b = hostedCluster.metadata) === null || _b === void 0 ? void 0 : _b.namespace) || ''}-${((_c = hostedCluster.metadata) === null || _c === void 0 ? void 0 : _c.name) || ''}` &&
((_e = (_d = am.metadata) === null || _d === void 0 ? void 0 : _d.labels) === null || _e === void 0 ? void 0 : _e[CLUSTER_NAME_LABEL]) === hostedCluster.spec.infraID &&
((_g = (_f = am.metadata) === null || _f === void 0 ? void 0 : _f.annotations) === null || _g === void 0 ? void 0 : _g[NODEPOOL_NAME_ANNOTATION]) ===
`${((_h = nodePool.metadata) === null || _h === void 0 ? void 0 : _h.namespace) || ''}/${((_j = nodePool.metadata) === null || _j === void 0 ? void 0 : _j.name) || ''}` &&
((_l = (_k = am.status) === null || _k === void 0 ? void 0 : _k.agentRef) === null || _l === void 0 ? void 0 : _l.name) &&
((_o = (_m = am.status) === null || _m === void 0 ? void 0 : _m.agentRef) === null || _o === void 0 ? void 0 : _o.namespace);
})
.reduce((acc, curr) => {
var _a, _b, _c, _d;
acc[((_b = (_a = curr.status) === null || _a === void 0 ? void 0 : _a.agentRef) === null || _b === void 0 ? void 0 : _b.name) || ''] = (_d = (_c = curr.status) === null || _c === void 0 ? void 0 : _c.agentRef) === null || _d === void 0 ? void 0 : _d.namespace;
return acc;
}, {});
return agents.filter((a) => { var _a, _b; return nodePoolAgentMachines[((_a = a.metadata) === null || _a === void 0 ? void 0 : _a.name) || ''] === ((_b = a.metadata) === null || _b === void 0 ? void 0 : _b.namespace); });
};
exports.getNodepoolAgents = getNodepoolAgents;
//# sourceMappingURL=nodepool.js.map