DevOps / Gitlab Interview questions
What are the main features of GitLab?
GitLab groups its capabilities into a few core areas that together cover most of the software delivery lifecycle in one product.
- Source code management - Git repositories, branches, merge requests, and code review.
- CI/CD - pipelines defined in
.gitlab-ci.yml, run by GitLab Runners. - Planning - issues, issue boards, epics, milestones, and roadmaps.
- Container Registry - a built-in Docker image registry per project.
- Security scanning - SAST, DAST, dependency and container scanning (Ultimate/Premium tiers).
- GitLab Pages - free static site hosting straight from a repository.
- Wiki and Snippets - lightweight documentation and reusable code sharing per project.
Which of these matter to a given team varies by subscription tier; Free covers the essentials (repos, basic CI/CD, issues), while Premium and Ultimate unlock heavier governance and security features.
More Related questions...