The build_node_enabled
parameter enables a dedicated build node for building applications. This setup can help isolate build processes from application runtime environments, ensuring that builds do not impact the performance of running applications.
The default value for build_node_enabled
is false
.
To enable a dedicated build node, use the following command:
$ convox rack params set build_node_enabled=true -r rackName
Setting parameters... OK
This command enables the dedicated build node for your rack.
Enabling a dedicated build node can improve the reliability and performance of your builds, especially for large or complex applications. This setup is particularly useful in CI/CD pipelines where frequent builds are required. Ensure that the build node type and configuration are suitable for your build requirements.