GitLab Architecture

GitLab Architecture

Professional Development

6 Qs

quiz-placeholder

Similar activities

Beam Basics

Beam Basics

Professional Development

6 Qs

Sources & Sinks

Sources & Sinks

Professional Development

5 Qs

Quiz sur le déploiement continu

Quiz sur le déploiement continu

Professional Development

8 Qs

lesson02 Git and GitHub Quiz

lesson02 Git and GitHub Quiz

Professional Development

10 Qs

[FE] Ice Breaking - VCS GIT

[FE] Ice Breaking - VCS GIT

Professional Development

10 Qs

OSS Contribution

OSS Contribution

Professional Development

10 Qs

LMT #3

LMT #3

Professional Development

10 Qs

Masa Pengenalan Lingkungan Sekolah

Masa Pengenalan Lingkungan Sekolah

Professional Development

10 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.