package resourceapi
import "github.com/moby/swarmkit/v2/manager/resourceapi"
Index ¶
- type ResourceAllocator
- func New(store *store.MemoryStore) *ResourceAllocator
- func (ra *ResourceAllocator) AttachNetwork(ctx context.Context, request *api.AttachNetworkRequest) (*api.AttachNetworkResponse, error)
- func (ra *ResourceAllocator) DetachNetwork(ctx context.Context, request *api.DetachNetworkRequest) (*api.DetachNetworkResponse, error)
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.
Source Files ¶
- Version
- v2.0.0-20250103191802-8c1959736554 (latest)
- Published
- Jan 3, 2025
- Platform
- linux/amd64
- Imports
- 10 packages
- Last checked
- 1 week ago –
Tools for package owners.