Skip to content

Commit bff6934

Browse files
committed
[all] move operator.observability.prometheus feature gate to stable
1 parent 885ccf7 commit bff6934

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed
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: all
6+
7+
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
8+
note: Move feature gate `operator.observability.prometheus` to stable
9+
10+
# One or more tracking issues related to the change
11+
issues: [3669]
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:

pkg/featuregate/featuregate.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,10 @@ var (
3838
// PrometheusOperatorIsAvailable is the feature gate that enables features associated to the Prometheus Operator.
3939
PrometheusOperatorIsAvailable = featuregate.GlobalRegistry().MustRegister(
4040
"operator.observability.prometheus",
41-
featuregate.StageBeta,
41+
featuregate.StageStable,
4242
featuregate.WithRegisterDescription("enables features associated to the Prometheus Operator"),
4343
featuregate.WithRegisterFromVersion("v0.82.0"),
44+
featuregate.WithRegisterToVersion("v0.122.0"),
4445
)
4546
// SetGolangFlags is the feature gate that enables automatically setting GOMEMLIMIT and GOMAXPROCS for the
4647
// collector, bridge, and target allocator.

0 commit comments

Comments
 (0)