GitLab Architecture

GitLab Architecture

Professional Development

6 Qs

quiz-placeholder

Similar activities

Sources & Sinks

Sources & Sinks

Professional Development

5 Qs

Pre Introduction to Data Engineering

Pre Introduction to Data Engineering

Professional Development

3 Qs

Ope_v3

Ope_v3

Professional Development

9 Qs

Sprint Planning Quiz

Sprint Planning Quiz

Professional Development

10 Qs

Integrated project: Maji Ndogo part 3 [MCQ] (Version : 0)

Integrated project: Maji Ndogo part 3 [MCQ] (Version : 0)

Professional Development

10 Qs

Quiz sur le déploiement continu

Quiz sur le déploiement continu

Professional Development

8 Qs

Beam Basics

Beam Basics

Professional Development

6 Qs

Data Fundamentals Post-Test

Data Fundamentals Post-Test

Professional Development

7 Qs

GitLab Architecture

GitLab Architecture

Assessment

Quiz

Information Technology (IT)

Professional Development

Hard

Created by

Koray Incki

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What triggers a GitLab CI/CD pipeline execution?

Any change made to the Git repository (new file, modification, etc.)

Reaching a pre-defined code coverage threshold

A change made to the .gitlab-ci.yml file.

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In the GitLab CI/CD architecture, what is the primary role of the GitLab Server?

to execute the individual jobs within a pipeline

to store the source code of the project

to manage pipelines and their associated jobs

to communicate with external APIs

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is a GitLab Runner, in simplified terms?

A type of DB that stores pipeline logs

A program that executes the individual jobs within a pipeline

A user interface for managing CI/CD pipelines

A type of cloud server that hosts the GitLab application.

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the Docker executed for in the pipeline?

To run Docker images that will be used for building, testing, and deploying the application

To manage the GitLab Server's resources

To encrypt sensitive data within the pipeline

To schedule pipeline jobs based on time

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What happens after a GitLab Runner completes a job successfully?

The Runner immediately shuts down

The GitLab Runner reports the job's results to the GitLab Server and then deallocates the resources (like the Docker Container)

The GitLab Runner saves all files to a local disk

The Gitlab Runner commits all files to the Git repository

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Where are the job artifacts (like todo.app) stored after a successful job completion?

In a temporary directory that's automatically deleted after the job finishes

Directly within the Git repository alongside the source code

In the GitLab CI/CD artifact storage, accessible through the GitLab interface and GitLab API

On the local machine of the GitLab Runner that executed the job.