Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ResourceAllocator ¶
type ResourceAllocator struct {
// contains filtered or unexported fields
}
ResourceAllocator handles resource allocation of cluster entities.
func New ¶
func New(store *store.MemoryStore) *ResourceAllocator
New returns an instance of the allocator
func (*ResourceAllocator) AttachNetwork ¶
func (ra *ResourceAllocator) AttachNetwork(ctx context.Context, request *api.AttachNetworkRequest) (*api.AttachNetworkResponse, error)
AttachNetwork allows the node to request the resources allocation needed for a network attachment on the specific node. - Returns `InvalidArgument` if the Spec is malformed. - Returns `NotFound` if the Network is not found. - Returns `PermissionDenied` if the Network is not manually attachable. - Returns an error if the creation fails.
func (*ResourceAllocator) DetachNetwork ¶
func (ra *ResourceAllocator) DetachNetwork(ctx context.Context, request *api.DetachNetworkRequest) (*api.DetachNetworkResponse, error)
DetachNetwork allows the node to request the release of the resources associated to the network attachment. - Returns `InvalidArgument` if attachment ID is not provided. - Returns `NotFound` if the attachment is not found. - Returns an error if the deletion fails.