From 9c857bacc78c6f1e9c0e0f653ef2340b8d0a2f22 Mon Sep 17 00:00:00 2001 From: Valentin Knabel Date: Fri, 15 Mar 2024 13:45:45 +0100 Subject: [PATCH] feat: accounting volume qos tags --- pkg/tag/accounting.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkg/tag/accounting.go b/pkg/tag/accounting.go index 7709d9f..d4bf89b 100644 --- a/pkg/tag/accounting.go +++ b/pkg/tag/accounting.go @@ -13,6 +13,10 @@ const ( AccountingNetworkTrafficInternal = "accounting.metal-stack.io/network-traffic-internal" // AccountingVolumeReplicas tag to store accounting volume replicas AccountingVolumeReplicas = "accounting.metal-stack.io/volume-replicas" + // AccountingVolumeQoSPolicyID tag to store accounting volume qos policy ID + AccountingVolumeQoSPolicyID = "accounting.metal-stack.io/volume-qos-policy-id" + // AccountingVolumeQoSPolicyName tag to store accounting volume qos policy name + AccountingVolumeQoSPolicyName = "accounting.metal-stack.io/volume-qos-policy-name" // AccountingVolumeEncryption tag to store accounting volume encryption information AccountingVolumeEncryption = "accounting.metal-stack.io/volume-encryption" // AccountingVolumeSnapshotSource tag to store accounting volume snapshot source uuid @@ -28,6 +32,8 @@ func AccountingTags() map[string]bool { AccountingNetworkTrafficExternal: true, AccountingNetworkTrafficInternal: true, AccountingVolumeReplicas: true, + AccountingVolumeQoSPolicyID: true, + AccountingVolumeQoSPolicyName: true, AccountingVolumeEncryption: true, AccountingVolumeSnapshotSource: true, }