Skip to content

Commit 2c3457d

Browse files
authoredOct 3, 2017
Merge pull request #84 from mbohlool/update-1.8
Update client to kubernetes 1.8
2 parents 60a8cd1 + 3d70ca4 commit 2c3457d

File tree

902 files changed

+116441
-27340
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

902 files changed

+116441
-27340
lines changed
 

‎examples/src/main/java/io/kubernetes/client/examples/Example.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public static void main(String[] args) throws IOException, ApiException{
3737
Configuration.setDefaultApiClient(client);
3838

3939
CoreV1Api api = new CoreV1Api();
40-
V1PodList list = api.listPodForAllNamespaces(null, null, null, null, null, null);
40+
V1PodList list = api.listPodForAllNamespaces(null, null, null, null, null, null, null, null, null);
4141
for (V1Pod item : list.getItems()) {
4242
System.out.println(item.getMetadata().getName());
4343
}

‎examples/src/main/java/io/kubernetes/client/examples/WatchExample.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public static void main(String[] args) throws IOException, ApiException{
3535

3636
Watch<V1Namespace> watch = Watch.createWatch(
3737
client,
38-
api.listNamespaceCall(null, null, null, null, 5, Boolean.TRUE, null, null),
38+
api.listNamespaceCall(null, null, null, null, null, 5, null, null, Boolean.TRUE, null, null),
3939
new TypeToken<Watch.Response<V1Namespace>>(){}.getType());
4040

4141
for (Watch.Response<V1Namespace> item : watch) {

0 commit comments

Comments
 (0)