storj/satellite/nodeselection/annotations.go
Artur M. Wolff 37d6df23fa satellite: implement metainfo.GetBucketLocation endpoint
Updates storj/storj-private#408
Updates storj/storj-private#409

Change-Id: Idaaca74b4a5c9c7907d095e0a3a5f29e52843ce6
2023-08-28 13:48:07 +02:00

19 lines
502 B
Go

// Copyright (C) 2023 Storj Labs, Inc.
// See LICENSE for copying information.
package nodeselection
const (
// AutoExcludeSubnet is placement annotation key to turn off subnet
// restrictions.
AutoExcludeSubnet = "autoExcludeSubnet"
// AutoExcludeSubnetOFF is the value of AutoExcludeSubnet to disable subnet
// restrictions.
AutoExcludeSubnetOFF = "off"
// Location is the placement annotation key for meaningful and
// human-readable descriptions of placements.
Location = "location"
)