diff --git a/staging/src/k8s.io/dynamic-resource-allocation/api/standard_attributes.go b/staging/src/k8s.io/dynamic-resource-allocation/deviceattribute/constants.go similarity index 84% rename from staging/src/k8s.io/dynamic-resource-allocation/api/standard_attributes.go rename to staging/src/k8s.io/dynamic-resource-allocation/deviceattribute/constants.go index b209bc7cdf2..bff6b146b94 100644 --- a/staging/src/k8s.io/dynamic-resource-allocation/api/standard_attributes.go +++ b/staging/src/k8s.io/dynamic-resource-allocation/deviceattribute/constants.go @@ -14,7 +14,11 @@ See the License for the specific language governing permissions and limitations under the License. */ -package api +package deviceattribute + +import ( + resourceapi "k8s.io/dynamic-resource-allocation/api" +) const ( // StandardDeviceAttributePrefix is the prefix used for standard device attributes. @@ -25,5 +29,5 @@ const ( // The value is a string value in the format `pci:`, // referring to a PCIe (Peripheral Component Interconnect Express) Root Complex. // This attribute can be used to identify devices that share the same PCIe Root Complex. - StandardDeviceAttributePCIeRoot = StandardDeviceAttributePrefix + "pcieRoot" + StandardDeviceAttributePCIeRoot resourceapi.QualifiedName = StandardDeviceAttributePrefix + "pcieRoot" )