GitLabForm is a specialized "configuration as a code" tool for GitLab projects, groups and more using hierarchical configuration written in YAML.
This project was originally hosted on the Egnyte organization who is my employer and where I developed the initial version of the app. They kindly agreed to give back ownership of this project to me. Thanks!
- What you get? - Features (with Comparison to similar apps and Limitations)
- Basic usage - Requirements, Installation, Quick start
- Advanced usage - Full configuration syntax, More cli usage examples, Running in an automated pipeline, Running automatically for new projects,
- History - Changelog (external file), Origins
- Join us! - Contributing, Legal,
GitLabForm enables you to manage:
-
Group:
- Badges,
- Members (users) {add/remove user, change access level, optional enforce},
- Members (groups) {share/unshare with group, change access level, optional enforce},
- Members using LDAP Group Links (GitLab Premium (paid) only),
- Secret variables,
- Settings,
-
Project:
- Archive/unarchive,
- Badges,
- Protected branches:
- access levels (roles) allowed to push/merge/unprotect, allow force push flag,
- users/groups allowed to push/merge/unprotect, code owner approval required flag (GitLab Premium (paid) only),
- Deployment keys,
- Files {add, edit or delete}, with templating based on Jinja2 (now supports custom variables!),
- Hooks,
- Members (users) {add/remove user, change access level, optional enforce},
- Members (groups) {share/unshare with group, change access level, optional enforce},
- Merge Requests approvals settings and approvers (GitLab Premium (paid) only),
- Pipeline schedules,
- Push Rules (GitLab Premium (paid) only),
- Secret variables,
- Services,
- Settings,
- Tags {protect/unprotect},
...for:
- all projects in your GitLab instance/that you have access to,
- a group/subgroup of projects,
- a single project,
...and a combination of them.
GitLabForm uses hierarchical configuration with inheritance, merging/overwriting and addivity. GitLabForm is also using passing the parameters as-is to GitLab APIs with PUT/POST requests.
GitLabForm has roughly the same purpose as GitLab provider for Terraform (which is a tool that we love and which has inspired us to write this app), but it has a different set of features and uses a different configuration format.
Please read more about GitLab provider for Terraform vs GitLabForm. This article includes a link to the feature matrix / comparison sheet between these two tools.
To configure your GitLab instance itself (appearance, application settings, features, license) please check out the GitLab Configuration as Code (GCasC) project!
Some of the app features are limited because of the GitLab API issues. Here is the list of them. Please check the links to the GitLab issue(s) in their comments and please upvote them if they are affecting you. Note that these issues/bugs affect all the apps using GitLab API, not just GitLabForm.
- Docker or Python 3.6-3.10 with pipx (recommended) or pip,
- GitLab 11+
- GitLab Premium (paid) for some features
Run the latest stable version with:
- Docker:
docker run -it -v $(pwd):/config ghcr.io/gdubicki/gitlabform:latest gitlabform
. - pipx:
pipx run gitlabform
Run the latest 2.* version with:
- Docker:
docker run -it -v $(pwd):/config ghcr.io/gdubicki/gitlabform:2 gitlabform
. - pipx:
pipx run --spec gitlabform~=2.2.0 gitlabform
See this for all available Docker tags.
Installing with:
- pipx:
pipx install gitlabform
(recommended) - plain
pip
:pip3 install gitlabform
Let's assume that you want to add a deployment key to all projects in a group "My Group" (with path "my-group"). If so then:
- Create example
config.yml
:
config_version: 2
gitlab:
# You can also set in your environment GITLAB_URL
url: https://gitlab.yourcompany.com
# You can also set in your environment GITLAB_TOKEN
token: "<private token of an admin user>"
projects_and_groups:
my-group/*:
deploy_keys:
a_friendly_deploy_key_name: # this name is only used in GitLabForm config
key: ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC3WiHAsm2UTz2dU1vKFYUGfHI1p5fIv84BbtV/9jAKvZhVHDqMa07PgVtkttjvDC8bA1kezhOBKcO0KNzVoDp0ENq7WLxFyLFMQ9USf8LmOY70uV/l8Gpcn1ZT7zRBdEzUUgF/PjZukqVtuHqf9TCO8Ekvjag9XRfVNadKs25rbL60oqpIpEUqAbmQ4j6GFcfBBBPuVlKfidI6O039dAnDUsmeafwCOhEvQmF+N5Diauw3Mk+9TMKNlOWM+pO2DKxX9LLLWGVA9Dqr6dWY0eHjWKUmk2B1h1HYW+aUyoWX2TGsVX9DlNY7CKiQGsL5MRH9IXKMQ8cfMweKoEcwSSXJ
title: ssh_key_name_that_is_shown_in_gitlab
can_push: false
-
Run
gitlabform my-group
-
Watch GitLabForm add this deploy key to all projects in "My Group" group in your GitLab!
See config.yml in this repo as a well documented example of all the features, including configuring all projects in all groups, projects in "my-group" group and specifically project "my-group/my-project1".
To apply settings for a single project, run:
gitlabform my-group/my-project1
To apply settings for a group of projects, run:
gitlabform my-group
To apply settings for all groups of projects and projects explicitly defined in the config, run:
gitlabform ALL_DEFINED
To apply settings for all projects, run:
gitlabform ALL
Run:
gitlabform -h
...to see the current set of supported command line parameters.
You can use GitLabForm as a part of your CCA (Continuous Configuration Automation) pipeline.
You can run it with a schedule on ALL_DEFINED
or ALL
projects to unify your GitLab configuration, after it may have drifted
from the configuration. For example you may allow the users to reconfigure projects during their working hours
but automate cleaning up the drift each night.
An example for running GitLabForm using GitLab CI is provided in the .gitlab-ci.example.yml file.
Note that as a standard best practice you should not put your GitLab access token in your config.yml
(unless it is
encrypted) for security reasons - please set it in the GITLAB_TOKEN
environment variable instead.
For GitLab CI a secure place to set it would be a Secret/Protected Variable in the project configuration.
We have documented some methods of automating running GitLabForm for newly created GitLab projects here.
Please see the contribution guide for info about all kinds of contributions, like:
- questions, feature requests,
- documentation and code contributions,
- other.
Contribution guide is also the place to look for info how to develop the app locally, build it, run the tests and learn about the code guidelines.
For detailed info about how the app code has been organized, where is what and where and how to fix bugs and/or add new features, please see the implementation design article.
This tool has been originally created as a workaround for missing GitLab features such as assigning deploy keys per project groups but as of now we prefer to use it ever if there are appropriate web UI features, such as secret variables per project groups (released in GitLab 9.4) to keep the configuration as code.
Later on we added features that allowed us to use GitLabForm to improve a group containing around 100 similar projects
to move to a unified development flow (by managing branches protection and the Pull Requests configuration),
basic tests and deployment process (by managing secret variables, deployment keys and files, such as .gitlab-ci.yml
),
integrations (such as JIRA or Slack) and more.
The app code is licensed under the MIT license.
A few scripts in dev/
directory are licensed under the MPL 2.0 license.
GitLab is a registered trademark of GitLab, Inc. This application is not endorsed by GitLab and is not affiliated with GitLab in any way.
The GitLabForm logo is based on the GitLab logos available here, and like the original art is licensed under the Creative Commons Attribution Non-Commercial ShareAlike 4.0 International License.