Hello,
I'm currently testing the remote deploy feature from the Flow Manager library. I've configured the remote URLs as shown below, and Flow Manager is already installed and functioning on the remote destination servers (I can access filters and other functionalities on them without any issues).
However, when attempting a remote deploy to any of the remote servers (e.g., UAT or PPD , Custome_2), I receive a flow error. Interestingly, when I add a custom remote entry that points to the same instance (localhost:1880) as the destination, the deploy works as expected. This suggests the issue may lie with the remote target configuration or a missing setup.
using node red v 4.0.9
Here’s my current flow-manager-cfg.json
:
{
"filter": [],
"fileFormat": "json",
"remoteDeploy": {
"remotes": [
{
"name": "UAT",
"nrAddress": "https://uat-flowbuilder.vas.blueprint.lab/"
},
{
"name": "PPD",
"nrAddress": "https://ppd-flowbuilder.vas.blueprint.lab"
},
{
"name": "Custom",
"nrAddress": "http://localhost:1880"
},
{
"name": "Custom_2",
"nrAddress": "http://localhost:9006" // another locally installed Node-RED instance
}
]
}
}