Kubernetes使用api观看Pod活动

时间:2016-02-04 04:48:03

标签: kubernetes

我们有兴趣在启动或停止时将某些命令作为pod和服务运行。使用yml文件中的生命周期钩子对我们不起作用,因为这些命令不是可选的。我们考虑过运行一个使用watch api运行这些命令的观察器pod。但我们无法弄清楚如何使用手表api,以便它不会一次又一次地发送相同的事件。是否有办法告诉手表api仅在连接打开后才发送新事件?如果期望有状态的监视api是不合理的,是否可以通过时间戳或单调增加的id来避免已经看到的事件?

基本上我们现在正在做的是运行一个带有守护进程的pod,它与api进行通信。我们可以将事件视为流。但是我们有兴趣在创建或删除pod时运行一些任务。

5 个答案:

答案 0 :(得分:5)

我找到了答案。万一其他人在看。

使用pkg/controller/framework package

的自定义任务,有一个更好的系统来观看资源和处理事件

我找到了这样的步骤,

1. initiate a framework.NewInFormer
2. Run the controller
3. the NewInFormer loads with your custom event handlers that will call when the events occured.

答案 1 :(得分:3)

我建议使用kube repo中的client。 为什么lifecycle hooks不能用于您的用例?

答案 2 :(得分:2)

如果它是群集内的,你可以在golang中这样做:

package main

import (
    "fmt"
    "time"

    "k8s.io/client-go/kubernetes"
    "k8s.io/client-go/pkg/api/v1"
    "k8s.io/client-go/tools/cache"
    "k8s.io/client-go/pkg/fields"
    "k8s.io/client-go/rest"
)

func main() {
    config, err := rest.InClusterConfig()
    if err != nil {
        panic(err.Error())
    }

    clientset, err := kubernetes.NewForConfig(config)
    if err != nil {
        panic(err.Error())
    }

    watchlist := cache.NewListWatchFromClient(clientset.Core().RESTClient(), "pods", v1.NamespaceDefault, 
       fields.Everything())
    _, controller := cache.NewInformer(
        watchlist,
        &v1.Pod{},
        time.Second * 0,
        cache.ResourceEventHandlerFuncs{
            AddFunc: func(obj interface{}) {
                fmt.Printf("add: %s \n", obj)
            },
            DeleteFunc: func(obj interface{}) {
                fmt.Printf("delete: %s \n", obj)
            },
            UpdateFunc:func(oldObj, newObj interface{}) {
                fmt.Printf("old: %s, new: %s \n", oldObj, newObj)
            },
        },
    )
    stop := make(chan struct{})
    go controller.Run(stop)
}

答案 3 :(得分:2)

运行kube代理以使用curl而无需身份验证

kubectl proxy 

使用手表列出所有活动;

curl -s 127.0.0.1:8001/api/v1/watch/events 

运行curl以观察事件并使用jq过滤它以进行pod启动和停止。

curl -s 127.0.0.1:8001/api/v1/watch/events | jq --raw-output \ 'if .object.reason == "Started" then . elif .object.reason == "Killing" then . else empty end | [.object.firstTimestamp, .object.reason, .object.metadata.namespace, .object.metadata.name] | @csv'

More details

答案 4 :(得分:0)

你说lifecycle hooks命令不是可选的,但它们确实是可选的。

Hook handler implementations
Containers can access a hook by implementing and registering a handler for that hook. There are two types of hook handlers that can be implemented for Containers:
Exec - Executes a specific command, such as pre-stop.sh, inside the cgroups and namespaces of the Container. Resources consumed by the command are counted against the Container.
HTTP - Executes an HTTP request against a specific endpoint on the Container.

从这里开始:https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/