GitLab Architecture

GitLab Architecture

Professional Development

6 Qs

quiz-placeholder

Similar activities

Quiz sobre Git Flow

Quiz sobre Git Flow

Professional Development

9 Qs

Kaopiz & GitHub Copilot Quiz

Kaopiz & GitHub Copilot Quiz

Professional Development

7 Qs

Quiz sur l'intégration continue

Quiz sur l'intégration continue

Professional Development

9 Qs

OSS Contribution

OSS Contribution

Professional Development

10 Qs

Quiz: Git – Controle de Versão

Quiz: Git – Controle de Versão

Professional Development

10 Qs

Fabric

Fabric

Professional Development

9 Qs

APLIKASI TMK

APLIKASI TMK

Professional Development

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