kubernetes去客户端补丁示例

时间:2017-04-14 16:46:01

标签: kubernetes-go-client

经过一些搜索我无法找到使用任何策略在Patch上执行的golang Kube客户端示例...我正在寻找一个golang示例:

kubectl patch pod valid-pod --type='json' -p='[{"op": "replace", "path": "/spec/containers/0/image", "value":"new image"}]'

我正在使用https://github.com/kubernetes/client-go v2.0.0

有人能指出我的一个例子吗?感谢。

1 个答案:

答案 0 :(得分:2)

所以,我想我在挖掘kubectl资源helper.go代码后有一个例子,这里是:

首先,创建一个这样的结构:

type ThingSpec struct {
        Op    string `json:"op"`
        Path  string `json:"path"`
        Value string `json:"value"`
}

然后创建一个数组:

 things := make([]ThingSpec, 1)
        things[0].Op = "replace"
        things[0].Path = "/spec/ccpimagetag"
        things[0].Value = "newijeff"

然后将数组转换为包含JSON版本的字节数组 数据结构:

patchBytes, err4 := json.Marshal(things)

最后,进行此API调用以执行此类补丁:

result, err6 := tprclient.Patch(api.JSONPatchType).
        Namespace(api.NamespaceDefault).
        Resource("pgupgrades").
        Name("junk").
        Body(patchBytes).
        Do().
        Get()

这大致相当于这个kubectl命令:

kubectl patch pgupgrades junk --type='json' -p='[{"op":"replace", "path":"/spec/ccpimagetag","value":"newimage"}]'