Skip to content

Commit 3c5d7b8

Browse files
authored
Promote the operator.collector.targetallocatorcr feature flag to Stable (#4420)
1 parent 3cecb2c commit 3c5d7b8

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
2+
change_type: breaking
3+
4+
# The name of the component, or a single word describing the area of concern, (e.g. collector, target allocator, auto-instrumentation, opamp, github action)
5+
component: target allocator
6+
7+
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
8+
note: Promote the operator.collector.targetallocatorcr feature flag to Stable
9+
10+
# One or more tracking issues related to the change
11+
issues: [2422]
12+
13+
# (Optional) One or more lines of additional information to render under the primary note.
14+
# These lines will be padded with 2 spaces and then inserted directly into the document.
15+
# Use pipe (|) for multiline entries.
16+
subtext: The flag can no longer be disabled. It will be completely removed in 0.138.0.

pkg/featuregate/featuregate.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,10 @@ var (
1818
// TargetAllocator CRs instead of generating the manifests for its resources directly.
1919
CollectorUsesTargetAllocatorCR = featuregate.GlobalRegistry().MustRegister(
2020
"operator.collector.targetallocatorcr",
21-
featuregate.StageBeta,
21+
featuregate.StageStable,
2222
featuregate.WithRegisterDescription("causes collector reconciliation to create a target allocator CR instead of creating resources directly"),
2323
featuregate.WithRegisterFromVersion("v0.112.0"),
24+
featuregate.WithRegisterToVersion("v0.138.0"),
2425
)
2526
// EnableNativeSidecarContainers is the feature gate that controls whether a
2627
// sidecar should be injected as a native sidecar or the classic way.

0 commit comments

Comments
 (0)