Explicitly version Clientset in example (#6446)

Core() is deprecated in favor of CoreV1
reviewable/pr6406/r3^2
Aditya Mukerjee 2017-11-27 19:14:36 -05:00 committed by Steve Perry
parent e316d532b2
commit e1d8864d52
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ import (
// creates the clientset
clientset, _:= kubernetes.NewForConfig(config)
// access the API to list pods
pods, _:= clientset.Core().Pods("").List(v1.ListOptions{})
pods, _:= clientset.CoreV1().Pods("").List(v1.ListOptions{})
fmt.Printf("There are %d pods in the cluster\n", len(pods.Items))
...
```