Skip to content

Commit

Permalink
Merge pull request kubernetes-client#6 from brendandburns/clean
Browse files Browse the repository at this point in the history
Fix some package references.
  • Loading branch information
mbohlool authored Jan 10, 2018
2 parents f4cd2fb + d65d487 commit 2c66100
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 @@ -19,7 +19,7 @@ $ npm install @kubernetes/client-node

## List all pods
```javascript
const k8s = require('@kubernetes/typescript-node');
const k8s = require('@kubernetes/client-node');

var k8sApi = k8s.Config.defaultClient();
k8sApi.listNamespacedPod('default')
Expand All @@ -30,7 +30,7 @@ k8sApi.listNamespacedPod('default')

## Create a new namespace
```javascript
const k8s = require('@kubernetes/typescript-node');
const k8s = require('@kubernetes/client-node');

var k8sApi = k8s.Config.defaultClient();

Expand Down

0 comments on commit 2c66100

Please sign in to comment.