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 d545007 commit d744079Copy full SHA for d744079
lib/logs.js
@@ -1,8 +1,8 @@
1
const Client = require('./client-base');
2
3
class Logs extends Client {
4
- async get({ podName, containerName, tailLines }) {
5
- return this._prefix.namespaces(this._namespace).pods(podName).log.get({ qs: { container: containerName, tailLines } });
+ async get({ podName, containerName, tailLines, timestamps = false }) {
+ return this._prefix.namespaces(this._namespace).pods(podName).log.get({ qs: { container: containerName, tailLines, timestamps } });
6
}
7
8
0 commit comments