CI / CD concepts Flashcards
What is Continuous Integration?
CI is a software development practice where members of a team integrate their work frequently.
What are benefits of CI ?
- Streamline the process from development to deployment
- Detect and fix bugs faster
- Helps deliver the code to production in an efficient and faster way
- Reduce risk by providing faster feedback
What is continuous delivery?
A software development discipline where software is built so that it can be released to production at any time.
Difference between CI and CD ?
CI is just the practice of integrating code continuously.
CD is the ability to release at any time.
Continuous delivery vs Continuous deployment ?
Cont. Delivery - code can be released at any time
Cont. Deployment - Code is released continuously as a part of the pipeline.
What is Jenkins written in?
Java
What was Jenkins previously called?
Hudson
The easiest way to run Jenkins for the first time?
Java web start
How to start jenkins from command line?
java -jar jenkins.war
What is the default port for Jenkins?
8080
Where do we do all the configurations in Jenkins?
Manage Jenkins
What is the path of JDK stored?
Configure System
JAVA_HOME
Where to setup email notification?
Configure System
“Email Notification” Section
Tabs in Manage plugins section?
Update
available
installed
advanced
what is build Job?
A task or step in the build process.
What are the types of Jobs/Projects?
Freestyle Project
Maven Project
External Job
MultiConfiguration Project
What is external Job and what is the use?
This is a type of Job that allows you to record the execution of a process run outside Jenkins, even on a remote machine. This is designed so that we can use Jenkins as a dashboard of our existing automation system.
What are multi-configuration projects?
Suitable for projects that need a large number of different configurations.
what syntax does Jenkins schedule use?
Cron syntax
Define fields of cron syntax?
there are five fields of cron syntax separated by white spaces
- minute (0-59)
- hour (0-23)
- day of the month (1-31)
- month (1-12)
- day of the week (0-7)
Where does maven store the test reports?
when maven runs unit test it automatically generates the XML test report in dir called surefire-reports in the target directory.
What is a build?
The result of one run of the job.
What are build steps?
Single operation within the build.
what are Artifacts ?
output of a build.