From 0cf203eee8616fd3cd29d06c509453082677fb19 Mon Sep 17 00:00:00 2001 From: Kristi Nikolla Date: Tue, 10 Mar 2026 17:50:06 -0400 Subject: [PATCH 1/2] Add GPU quota to default quotas registration --- .../management/commands/register_default_quotas.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/coldfront_plugin_cloud/management/commands/register_default_quotas.py b/src/coldfront_plugin_cloud/management/commands/register_default_quotas.py index 05c1301..ee13f11 100644 --- a/src/coldfront_plugin_cloud/management/commands/register_default_quotas.py +++ b/src/coldfront_plugin_cloud/management/commands/register_default_quotas.py @@ -117,6 +117,10 @@ def handle(self, *args, **options): "resource_type": STORAGE_RESOURCE_TYPE_NAME, "invoice_name": OPENSTACK_STORAGE_INVOICE_NAME, }, + { + "display_name": attributes.QUOTA_GPU, + "quota_label": "internal.gpu_quota", + }, ] # Find OpenShift resources From dd0ad6a5283762a2b5267f66a7db7628325fa9a8 Mon Sep 17 00:00:00 2001 From: Kristi Nikolla Date: Tue, 10 Mar 2026 18:09:16 -0400 Subject: [PATCH 2/2] Update src/coldfront_plugin_cloud/management/commands/register_default_quotas.py Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .../management/commands/register_default_quotas.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/coldfront_plugin_cloud/management/commands/register_default_quotas.py b/src/coldfront_plugin_cloud/management/commands/register_default_quotas.py index ee13f11..1a3705c 100644 --- a/src/coldfront_plugin_cloud/management/commands/register_default_quotas.py +++ b/src/coldfront_plugin_cloud/management/commands/register_default_quotas.py @@ -119,7 +119,7 @@ def handle(self, *args, **options): }, { "display_name": attributes.QUOTA_GPU, - "quota_label": "internal.gpu_quota", + "quota_label": "internal.", }, ]