Gitlab CI/CD

Gitlab CI/CD

Professional Development

7 Qs

quiz-placeholder

Similar activities

HRcules

HRcules

Professional Development

9 Qs

Inline Homework 6

Inline Homework 6

University - Professional Development

10 Qs

Pertamina JBB Fun Quiz

Pertamina JBB Fun Quiz

Professional Development

10 Qs

Leson 10: Environments, CI/CD Tools

Leson 10: Environments, CI/CD Tools

Professional Development

10 Qs

Webinar Instructor Series Forum

Webinar Instructor Series Forum

Professional Development

10 Qs

Public Speaking 1

Public Speaking 1

University - Professional Development

10 Qs

Gurudakshta cbp

Gurudakshta cbp

Professional Development

12 Qs

PT Pertamina (Persero) Fun Quiz

PT Pertamina (Persero) Fun Quiz

Professional Development

10 Qs

Gitlab CI/CD

Gitlab CI/CD

Assessment

Quiz

Other

Professional Development

Hard

Created by

Depte Mena

Used 29+ times

FREE Resource

7 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Main difference between Continuous delivery and continuous deployment, which is recommended?

Continuous Delivery: manual, Continuous deployment: automatic; Recommended: Continuous Delivery

Continuous Delivery: automatic, Continuous deployment: manual; Recommended: Continuous Delivery

Continuous Delivery: manual, Continuous deployment: automatic; Recommended: Continuous Deployment

Continuous Delivery: automatic, Continuous deployment: manual; Recommended: Continuous Deployment

2.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Artifacts created during pipeline can be used by the job in subsequent pipeline. Is statement True/False.

True

False

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which gitlab keyword is used to allow job to fail? (Failed job does not stop the subsequent jobs to run.)

when: always

allow-failure: true

artifacts:

- on-failure: true

when: on_failure

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which keyword is used to determine the order of job execution in gitlab-ci.yml?

script

artifacts

stages

tags

5.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What will be the output?

Step1: Initialize the value of custom variable 'VAR' as 'Hello' in gitlab ci/cd variables

Step2: Then,Initialize the variable 'VAR' as 'Hurray' under variables in gitlab-ci.yml

Step3:

Job A:

- Stage: build

- Script:

- echo $VAR

Prints 'Hello'

prints 'Hurray'

prints error

None of the above.

6.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

which keyword is used to limit when the jobs should be created:

only

except

both

None of the above

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Codebase is pushed to 'master' branch, above snippet is .gitlab-ci.yml file, will the above job execute?

Yes

No