Kubernetes

Kubernetes

  • 多集群资源检索——Clusterpedia 0.1.0 发布

    多集群资源检索——Clusterpedia 0.1.0 发布

    The Encyclopedia of Kubernetes clusters https://github.com/clusterpedia-io/clusterpedia

    查看全文
  • 深入 Kubernetes Informer -- Store 与 Indexer

    深入 Kubernetes Informer -- Store 与 Indexer

    在Informer中Store提供了将存储对象的能力,而Indexer在Store的基础上又提供了可以自定义索引来查询对象的功能StoreStore接口提供的功能比较直观,主要是用于对对象的增删改查。typeStoreinterface{Add(objinterface{})errorUpdate(

    查看全文
  • 深入 kubernetes 的 Wait 工具包

    深入 kubernetes 的 Wait 工具包

    wait包提供了通过轮询或者监听一个条件的修改(关闭channel,ctx.Done,...)来执行指定函数的工具函数,这些函数可以分为四大类Until类:根据channel的关闭或者contextDone的信号来结束对指定函数的轮询操作Condition类:不只是会根据channel或者conte

    查看全文