BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
d2cafa89
Commit
d2cafa89
authored
Sep 07, 2017
by
Achilleas Pipinellis
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'add-security-on-protected-branches' into 'master'
Add Security on protected branches Closes #35710 See merge request !14066
parents
8ed0a051
48dbeaa6
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
40 additions
and
0 deletions
+40
-0
pipelines.md
doc/ci/pipelines.md
+24
-0
permissions.md
doc/user/permissions.md
+8
-0
protected_branches.md
doc/user/project/protected_branches.md
+8
-0
No files found.
doc/ci/pipelines.md
View file @
d2cafa89
...
...
@@ -222,6 +222,30 @@ total running time should be:
Pipeline status and test coverage report badges are available. You can find their
respective link in the
[
Pipelines settings
]
page.
## Security on protected branches
A strict security model is enforced when pipelines are executed on
[
protected branches
](
../user/project/protected_branches.md
)
.
The following actions are allowed on protected branches only if the user is
[
allowed to merge or push
](
../user/project/protected_branches.md#using-the-allowed-to-merge-and-allowed-to-push-settings
)
on that specific branch:
-
run
**manual pipelines**
(using Web UI or Pipelines API)
-
run
**scheduled pipelines**
-
run pipelines using
**triggers**
-
trigger
**manual actions**
on existing pipelines
-
**retry/cancel**
existing jobs (using Web UI or Pipelines API)
**Secret variables**
marked as
**protected**
are accessible only to jobs that
run on protected branches, avoiding untrusted users to get unintended access to
sensitive information like deployment credentials and tokens.
**Runners**
marked as
**protected**
can run jobs only on protected
branches, avoiding untrusted code to be executed on the protected runner and
preserving deployment keys and other credentials from being unintentionally
accessed. In order to ensure that jobs intended to be executed on protected
runners will not use regular runners, they must be tagged accordingly.
[
jobs
]:
#jobs
[
jobs-yaml
]:
yaml/README.md#jobs
[
manual
]:
yaml/README.md#manual
...
...
doc/user/permissions.md
View file @
d2cafa89
...
...
@@ -230,6 +230,14 @@ users:
GitLab 8.12 has a completely redesigned job permissions system. To learn more,
read through the documentation on the
[
new CI/CD permissions model
](
project/new_ci_build_permissions_model.md#new-ci-job-permissions-model
)
.
## Running pipelines on protected branches
The permission to merge or push to protected branches is used to define if a user can
run CI/CD pipelines and execute actions on jobs that are related to those branches.
See
[
Security on protected branches
](
../ci/pipelines.md#security-on-protected-branches
)
for details about the pipelines security model.
## LDAP users permissions
Since GitLab 8.15, LDAP user permissions can now be manually overridden by an admin user.
...
...
doc/user/project/protected_branches.md
View file @
d2cafa89
...
...
@@ -115,6 +115,14 @@ Deleting a protected branch is only allowed via the web interface, not via Git.
This means that you can't accidentally delete a protected branch from your
command line or a Git client application.
## Running pipelines on protected branches
The permission to merge or push to protected branches is used to define if a user can
run CI/CD pipelines and execute actions on jobs that are related to those branches.
See
[
Security on protected branches
](
../../ci/pipelines.md#security-on-protected-branches
)
for details about the pipelines security model.
## Changelog
**9.2**
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment