NodeTagsUpdated type
A node’s tags changed. The one producer today is a hot spare being given a job: the daemon drops spare from the node’s tags the moment a job is bound to it, so a spare is a spare until it is assigned a job and an ordinary node after. Carries the node’s metadata as it now stands.
Signature:
export type NodeTagsUpdated = {
event: "nodeTagsUpdated";
nodeMetadata: NodeMetadata;
};
References: NodeMetadata