Skip to content

Commit

Permalink
Merge pull request #2140 from BassT/patch-3
Browse files Browse the repository at this point in the history
Update README.md
  • Loading branch information
k8s-ci-robot authored Jan 7, 2025
2 parents c259450 + 57b1090 commit 47f1bf4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ kc.loadFromDefault();

const k8sApi = kc.makeApiClient(k8s.CoreV1Api);

k8sApi.listNamespacedPod('default').then((res) => {
console.log(res.body);
k8sApi.listNamespacedPod({ namespace: 'default' }).then((res) => {
console.log(res);
});
```

Expand Down

0 comments on commit 47f1bf4

Please sign in to comment.