We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1dd60c6 commit 129c82cCopy full SHA for 129c82c
lib/logs.js
@@ -2,8 +2,8 @@
2
const Client = require('./client-base');
3
4
class Logs extends Client {
5
- async get({ podName, containerName }) {
6
- return this._client.api.v1.namespaces(this._namespace).pods(podName).log.get({ qs: { container: containerName } });
+ async get({ podName, containerName, tailLines }) {
+ return this._client.api.v1.namespaces(this._namespace).pods(podName).log.get({ qs: { container: containerName, tailLines } });
7
}
8
9
0 commit comments