You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// This is the ID of the intent for which the allocation was created. It is used by the Node Orchestrator to identify the correct allocation for a given intent
57
+
// This is the ID of the intent for which the allocation was created.
58
+
// It is used by the Node Orchestrator to identify the correct allocation for a given intent
42
59
IntentIDstring`json:"intentID"`
43
60
44
-
// This is the corresponding Node or VirtualNode name
61
+
// This is the corresponding Node or VirtualNode local name
45
62
NodeNamestring`json:"nodeName"`
46
63
47
64
// This specifies the type of the node: Node (Physical node of the cluster) or VirtualNode (Remote node owned by a different cluster)
48
65
TypeNodeType`json:"type"`
49
66
50
-
// This flag indicates if the allocation is a forwarding allocation, if true it represents only a placeholder to undertand that the cluster is just a proxy to another cluster
67
+
// This specifies if the destination of the allocation is local or remote so if the allocation will be used locally or from a remote cluster
68
+
DestinationDestination`json:"destination"`
69
+
70
+
// This flag indicates if the allocation is a forwarding allocation
71
+
// if true it represents only a placeholder to undertand that the cluster is just a proxy to another cluster
51
72
Forwardingbool`json:"forwarding,omitempty"`
52
73
53
74
// This Flavour describes the characteristics of the allocation, it is based on the Flavour CRD from which it was created
54
75
FlavourFlavour`json:"flavour"`
55
76
56
-
// This is the dimension of the allocation, it is based on the Flavour CRD from which it was created
57
-
Partition*Partition`json:"partition,omitempty"`
77
+
// This flags indicates if the Flavour from which the allocation was created was partitioned or not
0 commit comments