使用 Openshift/Client-go 进行 Openshift API 查询

drc*_*345 2 go openshift kubernetes openshift-client-tools client-go

我试图在 openshift/client-go 的帮助下列出 openshift 中的所有构建配置


import (
    "context"
    "flag"
    "fmt"
    "os"
    "path/filepath"

    metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    "k8s.io/client-go/tools/clientcmd"

    buildv1 "github.com/openshift/client-go/build/clientset/versioned/typed/build/v1"
)

func main() {
    err := start()
    if err != nil {
        fmt.Fprintf(os.Stderr, "error: %v", err)
        os.Exit(1)
    }
}

func start() error {
    var kubeconfig *string
    if home := homeDir(); home != "" {
        kubeconfig = flag.String("kubeconfig", filepath.Join(home, ".kube", "config"), "(optional) absolute path to the kubeconfig file")
    } else {
        kubeconfig = flag.String("kubeconfig", "", "absolute path to the kubeconfig file")
    }
    flag.Parse()

    // use the current context in kubeconfig
    config, err := clientcmd.BuildConfigFromFlags("", *kubeconfig)
    if err != nil {
        return err
    }

    buildV1Client, err := buildv1.NewForConfig(config)
    if err != nil {
        return err
    }

    namespace := "testproject"
    // get all builds
    builds, err := buildV1Client.Builds(namespace).List(context.TODO(), metav1.ListOptions{})
    if err != nil {
        return err
    }
    fmt.Printf("There are %d builds in project %s\n", len(builds.Items), namespace)
    // List names of all builds
    for i, build := range builds.Items {
        fmt.Printf("index %d: Name of the build: %s", i, build.Name)
    }
    return nil
}

func homeDir() string {
    if h := os.Getenv("HOME"); h != "" {
        return h
    }
    return os.Getenv("USERPROFILE") // windows
}
Run Code Online (Sandbox Code Playgroud)

我已经通过glide获得了所有依赖项。glide.yamlglide update -v

package: .
import:
- package: github.com/openshift/client-go
  subpackages:
  - build/clientset/versioned/typed/build/v1
- package: k8s.io/apimachinery
  subpackages:
  - pkg/apis/meta/v1
- package: k8s.io/client-go
  subpackages:
  - tools/clientcmd
Run Code Online (Sandbox Code Playgroud)

我看到我的所有包裹都是供应商的一部分。但我无法将类型更改为供应商配置。

go run main.go
# command-line-arguments
./main.go:39:44: cannot use config (type *"k8s.io/client-go/rest".Config) as type *"github.com/openshift/client-go/vendor/k8s.io/client-go/rest".Config in argument to "github.com/openshift/client-go/build/clientset/versioned/typed/build/v1".NewForConfig
./main.go:46:88: cannot use "k8s.io/apimachinery/pkg/apis/meta/v1".ListOptions literal (type "k8s.io/apimachinery/pkg/apis/meta/v1".ListOptions) as type "github.com/openshift/client-go/vendor/k8s.io/apimachinery/pkg/apis/meta/v1".ListOptions in argument to buildV1Client.Builds(namespace).List
Run Code Online (Sandbox Code Playgroud)

我已经删除了当前目录中的供应商目录,并确保 gopath 具有所有必需的依赖项作为替代尝试,但这不起作用。我还尝试链接 ~/go/src/github.com/openshift/client-go/vendor/* 供应商,但这似乎不起作用。

我还尝试了通过 Go 客户端 API 列出 Openshift 对象的解决方案。这没有用。

Ric*_*ico 5

滑行有点在撰写本文时,过时了。它的最后一次发布是 2019 年 7 月 10 日。

\n

自 Golang 版本以来1.11,它提出了名为go 模块的本机包管理,这已成为管理依赖项的更首选方法。这就是管理您的vendor目录的内容,这就是github.com/openshift/client-go使用的内容。我还假设您是从main.go文件开始的开始的。

\n

既然一切都在github.com/openshift/client-go已经管理了依赖项。我建议 :

\n
go get github.com/openshift/client-go\ncd $GOPATH/src/github.com/mygihubusername/myrepo\ncp -R ../../openshift/client-go/* .\n# put main.go here with your code or any of the subdirectories\n# cd subdir  if you put the main.go file under a subdir.\ngo build -o buildclient . \n# clean up any files you don\'t need\n# create github repo\ngit add *\ngit commit -m \'My first commit\'\ngit push origin master\n
Run Code Online (Sandbox Code Playgroud)\n

对我有用。\xe2\x9c\x8c\xef\xb8\x8f

\n