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
4c698234
Commit
4c698234
authored
Apr 09, 2021
by
lauraMon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Enables ff by default
parent
a17818c1
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
17 additions
and
14 deletions
+17
-14
changelogs/unreleased/lm-enable-ff-by-default.yml
changelogs/unreleased/lm-enable-ff-by-default.yml
+5
-0
config/feature_flags/development/multiple_cache_per_job.yml
config/feature_flags/development/multiple_cache_per_job.yml
+1
-1
doc/ci/yaml/README.md
doc/ci/yaml/README.md
+9
-11
lib/gitlab/ci/config/entry/cache.rb
lib/gitlab/ci/config/entry/cache.rb
+2
-2
No files found.
changelogs/unreleased/lm-enable-ff-by-default.yml
0 → 100644
View file @
4c698234
---
title
:
Enables multiple_cache_per_job feature flag by default
merge_request
:
59016
author
:
type
:
added
config/feature_flags/development/multiple_cache_per_job.yml
View file @
4c698234
...
...
@@ -5,4 +5,4 @@ rollout_issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/321877
milestone
:
'
13.10'
type
:
development
group
:
group::pipeline authoring
default_enabled
:
fals
e
default_enabled
:
tru
e
doc/ci/yaml/README.md
View file @
4c698234
...
...
@@ -2884,14 +2884,12 @@ You can specify a [fallback cache key](#fallback-cache-key) to use if the specif
##### Multiple caches
> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/32814) in GitLab 13.10.
> - It's [deployed behind a feature flag](../../user/feature_flags.md), disabled by default.
> - It's disabled on GitLab.com.
> - It's not recommended for production use.
> - To use it in GitLab self-managed instances, ask a GitLab administrator to [enable it](#enable-or-disable-multiple-caches). **(FREE SELF)**
WARNING:
This feature might not be available to you. Check the
**version history**
note above for details.
> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/32814) in GitLab 13.10,
> and disabled by default.
> - Enabled by default in GitLab 13.11.
> - Enabled on GitLab.com.
> - Recommended for production use.
> - For GitLab self-managed instances, GitLab administrators can opt to [disable it](#enable-or-disable-multiple-caches). **(FREE SELF)**
You can have a maximum of four caches:
...
...
@@ -2920,10 +2918,10 @@ the fallback is fetched multiple times if multiple caches are not found.
##### Enable or disable multiple caches **(FREE SELF)**
The multiple caches feature is under development
and no
t ready for production use.
It is deployed behind a feature flag that is
**
dis
abled by default**
.
The multiple caches feature is under development
bu
t ready for production use.
It is deployed behind a feature flag that is
**
en
abled by default**
.
[
GitLab administrators with access to the GitLab Rails console
](
../../administration/feature_flags.md
)
can
en
able it.
can
opt to dis
able it.
To enable it:
...
...
lib/gitlab/ci/config/entry/cache.rb
View file @
4c698234
...
...
@@ -8,8 +8,8 @@ module Gitlab
# Entry that represents a cache configuration
#
class
Cache
<
::
Gitlab
::
Config
::
Entry
::
Simplifiable
strategy
:Caches
,
if:
->
(
config
)
{
Feature
.
enabled?
(
:multiple_cache_per_job
)
}
strategy
:Cache
,
if:
->
(
config
)
{
Feature
.
disabled?
(
:multiple_cache_per_job
)
}
strategy
:Caches
,
if:
->
(
config
)
{
Feature
.
enabled?
(
:multiple_cache_per_job
,
default_enabled: :yaml
)
}
strategy
:Cache
,
if:
->
(
config
)
{
Feature
.
disabled?
(
:multiple_cache_per_job
,
default_enabled: :yaml
)
}
class
Caches
<
::
Gitlab
::
Config
::
Entry
::
ComposableArray
include
::
Gitlab
::
Config
::
Entry
::
Validatable
...
...
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