-
David Turanski authored
- Add DebugAddress helper to validate and parse the (legacy) debug-port and debug-address. Later has precedence. - Streamline the CommandBuilder implementation ensuring that the Java and Docker specific code runs inside the command builder and is not spilled out to the AbstractLocalDeployerSupport or AppLocalDeployer. - Update affected tests (also migrate those to JUnit5). - Improve code cohesion and remove death code. - Change GUID from 'port' to 'deployerId-index'. - Allow the Docker and Java command builder use different port range. Needed to allow in-container Skipper to operate with both maven and docker resources.
David Turanski authored- Add DebugAddress helper to validate and parse the (legacy) debug-port and debug-address. Later has precedence. - Streamline the CommandBuilder implementation ensuring that the Java and Docker specific code runs inside the command builder and is not spilled out to the AbstractLocalDeployerSupport or AppLocalDeployer. - Update affected tests (also migrate those to JUnit5). - Improve code cohesion and remove death code. - Change GUID from 'port' to 'deployerId-index'. - Allow the Docker and Java command builder use different port range. Needed to allow in-container Skipper to operate with both maven and docker resources.
README.adoc 1.18 KiB
Spring Cloud Local Deployer
Spring Cloud Local Deployer is an implementation of the Spring Cloud Deployer SPI for use to deploy applications on the same machine. This occurs by this application spawning a new JVM process for the deployed application.
It’s important to note that this deployer spawns new JVMs that are not monitored or maintained by this deployer. No attempts at high availability, fault tolerance, or resiliency are provided by the deployer. Since the deployer SPI expects an underlying platform to provide that level of resiliency, any use of this deployer in a production environment should be accompanied with additional monitoring at the app level (the apps this deployer deploys). This deployer will not be updated to take on those requirements. Therefore the user is encouraged to explore the CloudFoundry and Kubernetes variants as ways to meet them. |