github.com/juju/juju@v0.0.0-20240430160146-1752b71fcf00/storage/constants.go (about) 1 // Copyright 2022 Canonical Ltd. 2 // Licensed under the AGPLv3, see LICENCE file for details. 3 4 package storage 5 6 const ( 7 // K8sStorageMediumConst is the constant key 8 K8sStorageMediumConst = "storage-medium" 9 // K8sStorageMediumMemory is the value use tmpfs in K8s 10 K8sStorageMediumMemory = "Memory" 11 // K8sStorageMediumHugePages is a K8s storage for volumes 12 K8sStorageMediumHugePages = "HugePages" 13 ) 14 15 const ( 16 // StorageClass is the name of a storage class resource. 17 K8sStorageClass = "storage-class" 18 K8sStorageProvisioner = "storage-provisioner" 19 K8sStorageMedium = "storage-medium" 20 K8sStorageMode = "storage-mode" 21 )