Skip to content

Commit b4e5f31

Browse files
authored
Merge pull request #45126 from aravindhp/nlq-promote-beta
KEP-2258: Promote NodeLogQuery to beta
2 parents 7b6f493 + 5a55277 commit b4e5f31

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

content/en/docs/concepts/cluster-administration/system-logs.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -244,11 +244,11 @@ To help with debugging issues on nodes, Kubernetes v1.27 introduced a feature th
244244
running on the node. To use the feature, ensure that the `NodeLogQuery`
245245
[feature gate](/docs/reference/command-line-tools-reference/feature-gates/) is enabled for that node, and that the
246246
kubelet configuration options `enableSystemLogHandler` and `enableSystemLogQuery` are both set to true. On Linux
247-
we assume that service logs are available via journald. On Windows we assume that service logs are available
248-
in the application log provider. On both operating systems, logs are also available by reading files within
247+
the assumption is that service logs are available via journald. On Windows the assumption is that service logs are
248+
available in the application log provider. On both operating systems, logs are also available by reading files within
249249
`/var/log/`.
250250

251-
Provided you are authorized to interact with node objects, you can try out this alpha feature on all your nodes or
251+
Provided you are authorized to interact with node objects, you can try out this feature on all your nodes or
252252
just a subset. Here is an example to retrieve the kubelet service logs from a node:
253253

254254
```shell
@@ -293,4 +293,4 @@ kubectl get --raw "/api/v1/nodes/node-1.example/proxy/logs/?query=kubelet&patter
293293
* Read about [Contextual Logging](https://github.com/kubernetes/enhancements/tree/master/keps/sig-instrumentation/3077-contextual-logging)
294294
* Read about [deprecation of klog flags](https://github.com/kubernetes/enhancements/tree/master/keps/sig-instrumentation/2845-deprecate-klog-specific-flags-in-k8s-components)
295295
* Read about the [Conventions for logging severity](https://github.com/kubernetes/community/blob/master/contributors/devel/sig-instrumentation/logging.md)
296-
296+
* Read about [Log Query](https://kep.k8s.io/2258)

content/en/docs/reference/command-line-tools-reference/feature-gates/node-log-query.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,9 @@ stages:
99
- stage: alpha
1010
defaultValue: false
1111
fromVersion: "1.27"
12+
toVersion: "1.29"
13+
- stage: beta
14+
defaultValue: false
15+
fromVersion: "1.30"
1216
---
1317
Enables querying logs of node services using the `/logs` endpoint.

0 commit comments

Comments
 (0)