Open
Description
Is your feature request related to a problem? Please describe.
NodeRed has a really nice feature for version controlling your flows called Projects (which lets you commit flow changes via the UI).
I'm considering managing nodered through a Dev/Production GitOps-style pipeline where:
- the dev version has the Projects feature enabled and you make changes and commit to a git repo.
- And then the production version (treated as a read-only nodered, could be headless) uses the sidecar to update changes from configmaps created from the git repo (possibly using git-sync).
I'm curious to know how the flow_refresh.py sidecar would interplay with the files generated by the Projects feature.
I ask because I noticed extra-node-modules.json
which seems different to how nodered projects seems to manage things (through package.json
) and I was wondering if you've considered these two features together.
Describe the solution you'd like
- someone can make changes to a flow, add modules, etc. using the projects feature of the dev nodered instance and commit the changes via the UI.
- I can have an automated workflow to pull the changes into the production nodered instance and automatically deploy flows and install node modules, etc so that the new version can be deployed automatically (without any interaction with the UI)
Describe alternatives you've considered
It looks like the flow_refresh.py
file pretty much does this, but I am just curious about any potential pitfalls around combining these two tools.
Search
- I did search for other open and closed issues before opening this.
Code of Conduct
- I agree to follow this project's Code of Conduct
Additional context
No response
Activity