feat:Add config-driven Fabric-X namespaces - #828
MaryamArif7 wants to merge 3 commits into
Conversation
Signed-off-by: MaryamArif7 <www.maryamarif28@gmail.com>
|
Hi @umegbewe Id like to clarify a few things regarding this PR
4.Right now we are doing something like this below :Just like this ref Make File But the flaw with this approach is that we type the ploicies by hand everytime we add them even tho fablo already knows every org's MSP name from orgs[] what do you think if we should go with this ? we can do somethig like this with this we can add a helper fun ,resolvePolicy which can input the orgs with namespace names and return this |
"namespaces": [
{ "name": "mynamespace", "orgs": ["Org1", "Org2"] }
]advanced override can be "namespaces": [
{ "name": "custom", "policy": "AND('Org1MSP.member')" }
]I’d avoid allowing both orgs and policy in the same namespace for now |
Signed-off-by: MaryamArif7 <www.maryamarif28@gmail.com>
Signed-off-by: MaryamArif7 <www.maryamarif28@gmail.com>
|
implementation is completed ,only testing is left |
fixes #819
This PR adds support for configuring Fabric-X namespaces through the Fablo configuration.
Changes
This makes it easier to set up Fabric-X namespaces without needing to configure them manually.