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.
2 parents 916faaf + 1d229ab commit 14eeca9Copy full SHA for 14eeca9
examples/typescript/exec/exec-example.ts
@@ -1,8 +1,6 @@
1
import * as k8s from '@kubernetes/client-node';
2
import * as stream from 'stream';
3
4
-const command = process.argv[2];
5
-
6
const kc = new k8s.KubeConfig();
7
kc.loadFromDefault();
8
@@ -11,7 +9,7 @@ exec.exec(
11
9
'default',
12
10
'nginx-4217019353-9gl4s',
13
'nginx',
14
- command,
+ ['ls, '-al', '.'],
15
process.stdout as stream.Writable,
16
process.stderr as stream.Writable,
17
process.stdin as stream.Readable,
0 commit comments