Skip to content

Commit

Permalink
Merge pull request #184 from timothyjosefik/fix-readme-list-pod
Browse files Browse the repository at this point in the history
Fixed listPodForAllNamespaces to follow along with the actual Example class
  • Loading branch information
brendandburns authored Feb 14, 2018
2 parents 997c088 + 30018db commit 55a5a75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public class Example {
Configuration.setDefaultApiClient(client);

CoreV1Api api = new CoreV1Api();
V1PodList list = api.listPodForAllNamespaces(null, null, null, null, null, null);
V1PodList list = api.listPodForAllNamespaces(null, null, null, null, null, null, null, null, null);
for (V1Pod item : list.getItems()) {
System.out.println(item.getMetadata().getName());
}
Expand Down

0 comments on commit 55a5a75

Please sign in to comment.