mirror of
https://github.com/fosrl/pangolin.git
synced 2026-03-10 20:56:39 +00:00
Fix: Support public-resources and private-resources in Docker blueprint labels
- Add support for pangolin.public-resources.* labels as alias for proxy-resources - Add support for pangolin.private-resources.* labels as alias for client-resources - Update processContainerLabels to parse all four resource type prefixes - Update early-exit check in applyNewtDockerBlueprint to consider all four resource keys - ConfigSchema transformation will merge public/private into proxy/client as designed Fixes #2125
This commit is contained in:
committed by
Owen Schwartz
parent
5e183911e1
commit
7507806aaa
@@ -36,7 +36,9 @@ export async function applyNewtDockerBlueprint(
|
||||
|
||||
if (
|
||||
isEmptyObject(blueprint["proxy-resources"]) &&
|
||||
isEmptyObject(blueprint["client-resources"])
|
||||
isEmptyObject(blueprint["client-resources"]) &&
|
||||
isEmptyObject(blueprint["public-resources"]) &&
|
||||
isEmptyObject(blueprint["private-resources"])
|
||||
) {
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user