You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: keps/sig-instrumentation/4828-component-flagz/README.md
+5-3Lines changed: 5 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -272,7 +272,7 @@ This section must be completed when targeting beta to a release.
272
272
273
273
This feature should not cause rollout failures. If it does, we can disable the feature. In the worst
274
274
case, it is possible it could cause runtime failures, but it is highly unlikely we would not detect this
275
-
with existing tests.
275
+
with existing tests. The endpoint is isolated and does not affect core workloads.
276
276
277
277
###### What specific metrics should inform a rollback?
278
278
@@ -332,6 +332,8 @@ This is a debugging feature and not something that workloads depend on. Therefor
332
332
###### What are the SLIs (Service Level Indicators) an operator can use to determine the health of the service?
333
333
334
334
This enhancement proposes data that can be used to determine the health of the component.
335
+
(though this endpoint is not intended to be used for alerting.)
336
+
It is not intended for use by workloads or for real-time monitoring or alerting.
335
337
336
338
###### Are there any missing metrics that would be useful to have to improve observability of this feature?
337
339
@@ -347,11 +349,11 @@ No, each component's flagz is independent.
347
349
348
350
###### Will enabling / using this feature result in any new API calls?
349
351
350
-
No
352
+
Yes, enabling this feature will result in a new HTTP endpoint (/flagz) being served by each component (including apiserver). However, this is not a Kubernetes API type or resource; it is a non-resource endpoint that provides component flag information for debugging and observability. No new Kubernetes API objects or resource types are introduced.
351
353
352
354
###### Will enabling / using this feature result in introducing new API types?
353
355
354
-
No.
356
+
No, this feature does not introduce new Kubernetes API types or resources. While the flagz endpoint uses a structured JSON response with Group/Version/Kind for content negotiation and consistency, it is not a Kubernetes API object and is not managed or persisted by the API server. The GVK is used solely to provide a predictable format for clients querying the endpoint.
355
357
356
358
###### Will enabling / using this feature result in any new calls to the cloud provider?
0 commit comments