Merge pull request #23757 from dougsland/docs-doug

[docs] fix client-go example
This commit is contained in:
Kubernetes Prow Robot
2020-09-17 19:00:45 -07:00
committed by GitHub
3 changed files with 15 additions and 6 deletions
@@ -171,7 +171,10 @@ Go 클라이언트는 kubectl CLI가 API 서버를 찾아 인증하기 위해
사용할 수 있다. 이 [예제](https://git.k8s.io/client-go/examples/out-of-cluster-client-configuration/main.go)를 참고한다.
```golang
package main
import (
"context"
"fmt"
"k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/client-go/kubernetes"
@@ -185,7 +188,7 @@ func main() {
// clientset을 생성한다
clientset, _ := kubernetes.NewForConfig(config)
// 파드를 나열하기 위해 API에 접근한다
pods, _ := clientset.CoreV1().Pods("").List(v1.ListOptions{})
pods, _ := clientset.CoreV1().Pods("").List(context.TODO(), v1.ListOptions{})
fmt.Printf("There are %d pods in the cluster\n", len(pods.Items))
}
```