Jenkins: Essentials Flashcards

1
Q

The intent of the continuous workflow

A

To have a code that is stable and valid all the time

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Continuous

A

implements Agile and Devops philosophies with tools that standardize the steps in the process and thoroughly test each code modification before it is integrated into the official source.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Continuous Integration (CI)

A

frequent, automatic integration of code. All new and modified code is automatically tested with the master code.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Continuous Delivery (CD)

A

the natural extension of CI. It ensures that the code is always ready to be deployed, although manual approval is required to actually deploy the software to production.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Continuous Deployment

A

automatically deploys all validated changes to production. Frequent feedback enables issues to be found and fixed quickly.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Elements of the Delivery Pipelines

A
  1. Version control
  2. Build
  3. Unit test
  4. Deploy
  5. Auto test
  6. Deploy to production
  7. Measure and validate
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Steps in the software delivery process

A
  1. Code
  2. Build
  3. Integrate
  4. Test
  5. Release
  6. Deploy
  7. Operate
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Source code management systems (SCMs) / version control systems (VCSs),

A

software systems that record all changes for a set of files over time. This allows you to share those changes and provide merging and tracking history of the recorded changes.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Using a modern SCM enables

A
  1. Collaborate efficiently on a single codebase.
  2. Track every change. SCM is considered the Single Source of Truth. (rollback)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

The workflow to modify code that is stored in an SCM

A
  1. Clone (copy) the repo to your local computer.
  2. Create a branch for the change you want to make. A branch should represent a small, discrete change, which is typically the amount of work you can do in a few hours or less.
  3. Modify your local codebase and test your changes locally.
  4. Create a commit that contains the modified codebase.
  5. Push your commit to the remote, official repository.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

commit

A
  1. a set of diffs that have been explicitly validated.
  2. A commit is actually a new version of the codebase. It can exist only locally or remotely. The latest commit on the history is the Head.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

branch

A

a pointer to a single commit.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Head

A

the “latest” branch, also known as the master branch. To integrate a branch, you must merge it:

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

A Pull Request (PR)

A

contains the commits you want to add to the official code. It is pushed to the central server, where it can be reviewed and modified before it is merged to the destination branch. A pull request ends by being closed or merged.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly