| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Please setup Building / Deployment pipeline for the given project
The project sources are located at: https://github.com/GamePoint-LG/devops_test.git Project itself is a web application generated with start.spring.io. There are two branches in repository - master and develop.
mvn clean install
Result artifact will be stored in ./target folder after successful build process.
java -jar application_name.jar
Web app is up and listening on 8080 port. It is available at http://localhost:8080/up If service was built from master branch it will respond with 200 HTTP code and UP text in response body. In case of develop branch it will respond with 500 HTTP code and error message in response body.
Building / Deployment pipeline must be set up using Jenkins or TeamCity. Building must be triggered on each commit event. Please ensure the ability to start parallel builds in case of concurrent commits and available workers on build .
Build artifacts must be stored using Artifactory repository manager. Artifacts shouldn’t overwrite each other in case of building from different branches.
Deployment must be implemented in Jenkins or TeamCity with an option to choose available built artifact version. In case of server start failure the ability of rollback to previous successful version of server must be foreseen.
Implement Deployment to 2 servers with load balancer in front of them to avoid downtime during servers update process.
| Back | FazBrowse Home | New Git URL |