k8s集群外go客户端示例

k8s集群外go客户端示例

(金庆的专栏 2018.7)

集群内客户端需要打包成docker镜像,上传镜像,然后用 kubectl run 运行,
还要设置用户角色,太麻烦,还是用集群外客户端测试比较方便。

客户端库使用 ericchiang/k8s, 比官方的 client-go 要简单许多。

集群内客户端使用k8s.NewInClusterClient()创建,
集群外客户端使用 NewClient(config *Config), 需要输入配置,
配置就是从 ~/.kube/config 读取的。
参考 https://github.com/ericchiang/k8s/issues/79

代码如下:

package main

import (
    "context"
    "fmt"
    "log"
    "io/ioutil"

    "github.com/ghodss/yaml"
    "github.com/ericchiang/k8s"
    corev1 "github.com/ericchiang/k8s/apis/core/v1"
)

func main() {
    data, err := ioutil.ReadFile("config")
    if err != nil {
        panic(err)
    }

    // Unmarshal YAML into a Kubernetes config object.
    var config k8s.Config
    if err := yaml.Unmarshal(data, &config); err != nil {
        panic(err)
    }

    client, err := k8s.NewClient(&config)
    // client, err := k8s.NewInClusterClient()
    if err != nil {
        log.Fatal(err)
    }

    var nodes corev1.NodeList
    if err := client.List(context.Background(), "", &nodes); err != nil {
        log.Fatal(err)
    }
    for _, node := range nodes.Items {
        fmt.Printf("name=%q schedulable=%t\n", *node.Metadata.Name, !*node.Spec.Unschedulable)
    }
}

yaml 库用了 ghodss/yaml,不能用 go-yaml, 不然报错
yaml: unmarshal errors
见:https://github.com/ericchiang/k8s/issues/81

复制 .kube/config 到运行目录,运行列出所有节点:

[jinqing@host-10-1-2-19 out-cluster]$ cp ~/.kube/config .
[jinqing@host-10-1-2-19 out-cluster]$ ./out-cluster 
name="host-10-1-2-20" schedulable=true
name="host-10-1-2-21" schedulable=true
name="host-10-1-2-22" schedulable=true
name="host-10-1-2-19" schedulable=true
name="host-10-1-2-18" schedulable=true
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值