From 30018db52ad82229f4fb4418f2bd769b8e9e0748 Mon Sep 17 00:00:00 2001 From: Timothy Josefik Date: Tue, 13 Feb 2018 21:52:51 -0600 Subject: [PATCH] Fixed listPodForAllNamespaces to follow along with the actual Example class. https://github.com/kubernetes-client/java/blob/master/examples/src/main/java/io/kubernetes/client/examples/Example.java --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ea26b55ea6..6990742a03 100644 --- a/README.md +++ b/README.md @@ -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()); }