19 lines
502 B
Go
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"
|
||
|
)
|