We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c259450 commit 57b1090Copy full SHA for 57b1090
1 file changed
README.md
@@ -29,8 +29,8 @@ kc.loadFromDefault();
29
30
const k8sApi = kc.makeApiClient(k8s.CoreV1Api);
31
32
-k8sApi.listNamespacedPod('default').then((res) => {
33
- console.log(res.body);
+k8sApi.listNamespacedPod({ namespace: 'default' }).then((res) => {
+ console.log(res);
34
});
35
```
36
0 commit comments