From c68549e3040989bf9731ecb9414f14a13ae56857 Mon Sep 17 00:00:00 2001 From: Martin Braun Date: Fri, 8 Dec 2023 17:55:06 +0100 Subject: [PATCH] fix tenantLabel to use proper neuroforgede --- swarmgate/app.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swarmgate/app.ts b/swarmgate/app.ts index 42dd02a..b75174f 100644 --- a/swarmgate/app.ts +++ b/swarmgate/app.ts @@ -14,7 +14,7 @@ const ALLOWED_VOLUME_TYPES = process.env.ALLOWED_VOLUME_TYPES?.split(',') || ['b const ALLOW_PORT_EXPOSE = process.env.ALLOW_PORT_EXPOSE === '1' || process.env.ALLOW_PORT_EXPOSE === 'true'; const SERVICE_ALLOW_LISTED_NETWORKS = process.env.SERVICE_ALLOW_LISTED_NETWORKS?.split(',') || []; -const tenantLabel = "com.github.com.nfcompose.swarmgate.tenant"; +const tenantLabel = "com.github.neuroforgede.swarmgate.tenant"; // some older versions have OWNER_LABEL_VALUE set but not TENANT_NAME const tenantLabelValue = process.env.TENANT_NAME || process.env.OWNER_LABEL_VALUE;