Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
1ff39a1d
Commit
1ff39a1d
authored
Nov 20, 2019
by
Kamil Trzciński
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update documentation related to depend_on_persistent_pipeline_ref
parent
67e4c347
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
5 deletions
+4
-5
doc/ci/pipelines.md
doc/ci/pipelines.md
+4
-5
No files found.
doc/ci/pipelines.md
View file @
1ff39a1d
...
...
@@ -469,14 +469,13 @@ To illustrate its life cycle:
1.
GitLab Runner fetches the persistent pipeline ref and gets source code from the checkout-SHA.
1.
When the pipeline finished, its persistent ref is cleaned up in a background process.
NOTE:
**NOTE**
: At this moment, this feature is off dy default and can be manually enabled
by enabling
`depend_on_persistent_pipeline_ref`
feature flag, however, we'd remove this
feature flag and make it enabled by deafult by the day we release 12.4 _if we don't find any issues_.
If you'd be interested in manually turning on this behavior, please ask the administrator
NOTE:
**NOTE**
: At this moment, this feature is on dy default and can be manually disabled
by disabling
`depend_on_persistent_pipeline_ref`
feature flag. If you'd be interested in
manually disabling this behavior, please ask the administrator
to execute the following commands in rails console.
```
shell
>
sudo
gitlab-rails console
# Login to Rails console of GitLab instance.
>
project
=
Project.find_by_full_path
(
'namespace/project-name'
)
# Get the project instance.
>
Feature.
enable
(
:depend_on_persistent_pipeline_ref, project
)
# En
able the feature flag.
>
Feature.
disable
(
:depend_on_persistent_pipeline_ref, project
)
# Dis
able the feature flag.
```
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