InterviewSolution
Saved Bookmarks
| 1. |
Can you explain the architecture of Jenkins? |
|
Answer» Jenkins follows the master-slave architecture. The master pulls the latest CODE from the GitHub repository whenever there is a commitment made to the code. The master REQUESTS slaves to perform operations like build, test and run and produce test case REPORTS. This workload is distributed to all the slaves in a uniform manner. Jenkins also uses multiple slaves because there might be CHANCES that require different test case suites to be run for different ENVIRONMENTS once the code commits are done. Jenkins Architecture |
|