mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-06 16:06:56 +00:00
* feat: add discovery support in instrumented clients Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * fix tracing Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * feat: add logging support to instrumented clients Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> Signed-off-by: Charles-Edouard Brétéché <charled.breteche@gmail.com>
92 lines
4.8 KiB
Go
92 lines
4.8 KiB
Go
package client
|
|
|
|
import (
|
|
"github.com/go-logr/logr"
|
|
clusterrolebindings "github.com/kyverno/kyverno/pkg/clients/kube/rbacv1beta1/clusterrolebindings"
|
|
clusterroles "github.com/kyverno/kyverno/pkg/clients/kube/rbacv1beta1/clusterroles"
|
|
rolebindings "github.com/kyverno/kyverno/pkg/clients/kube/rbacv1beta1/rolebindings"
|
|
roles "github.com/kyverno/kyverno/pkg/clients/kube/rbacv1beta1/roles"
|
|
"github.com/kyverno/kyverno/pkg/metrics"
|
|
k8s_io_client_go_kubernetes_typed_rbac_v1beta1 "k8s.io/client-go/kubernetes/typed/rbac/v1beta1"
|
|
"k8s.io/client-go/rest"
|
|
)
|
|
|
|
func WithMetrics(inner k8s_io_client_go_kubernetes_typed_rbac_v1beta1.RbacV1beta1Interface, metrics metrics.MetricsConfigManager, clientType metrics.ClientType) k8s_io_client_go_kubernetes_typed_rbac_v1beta1.RbacV1beta1Interface {
|
|
return &withMetrics{inner, metrics, clientType}
|
|
}
|
|
|
|
func WithTracing(inner k8s_io_client_go_kubernetes_typed_rbac_v1beta1.RbacV1beta1Interface, client string) k8s_io_client_go_kubernetes_typed_rbac_v1beta1.RbacV1beta1Interface {
|
|
return &withTracing{inner, client}
|
|
}
|
|
|
|
func WithLogging(inner k8s_io_client_go_kubernetes_typed_rbac_v1beta1.RbacV1beta1Interface, logger logr.Logger) k8s_io_client_go_kubernetes_typed_rbac_v1beta1.RbacV1beta1Interface {
|
|
return &withLogging{inner, logger}
|
|
}
|
|
|
|
type withMetrics struct {
|
|
inner k8s_io_client_go_kubernetes_typed_rbac_v1beta1.RbacV1beta1Interface
|
|
metrics metrics.MetricsConfigManager
|
|
clientType metrics.ClientType
|
|
}
|
|
|
|
func (c *withMetrics) RESTClient() rest.Interface {
|
|
return c.inner.RESTClient()
|
|
}
|
|
func (c *withMetrics) ClusterRoleBindings() k8s_io_client_go_kubernetes_typed_rbac_v1beta1.ClusterRoleBindingInterface {
|
|
recorder := metrics.ClusteredClientQueryRecorder(c.metrics, "ClusterRoleBinding", c.clientType)
|
|
return clusterrolebindings.WithMetrics(c.inner.ClusterRoleBindings(), recorder)
|
|
}
|
|
func (c *withMetrics) ClusterRoles() k8s_io_client_go_kubernetes_typed_rbac_v1beta1.ClusterRoleInterface {
|
|
recorder := metrics.ClusteredClientQueryRecorder(c.metrics, "ClusterRole", c.clientType)
|
|
return clusterroles.WithMetrics(c.inner.ClusterRoles(), recorder)
|
|
}
|
|
func (c *withMetrics) RoleBindings(namespace string) k8s_io_client_go_kubernetes_typed_rbac_v1beta1.RoleBindingInterface {
|
|
recorder := metrics.NamespacedClientQueryRecorder(c.metrics, namespace, "RoleBinding", c.clientType)
|
|
return rolebindings.WithMetrics(c.inner.RoleBindings(namespace), recorder)
|
|
}
|
|
func (c *withMetrics) Roles(namespace string) k8s_io_client_go_kubernetes_typed_rbac_v1beta1.RoleInterface {
|
|
recorder := metrics.NamespacedClientQueryRecorder(c.metrics, namespace, "Role", c.clientType)
|
|
return roles.WithMetrics(c.inner.Roles(namespace), recorder)
|
|
}
|
|
|
|
type withTracing struct {
|
|
inner k8s_io_client_go_kubernetes_typed_rbac_v1beta1.RbacV1beta1Interface
|
|
client string
|
|
}
|
|
|
|
func (c *withTracing) RESTClient() rest.Interface {
|
|
return c.inner.RESTClient()
|
|
}
|
|
func (c *withTracing) ClusterRoleBindings() k8s_io_client_go_kubernetes_typed_rbac_v1beta1.ClusterRoleBindingInterface {
|
|
return clusterrolebindings.WithTracing(c.inner.ClusterRoleBindings(), c.client, "ClusterRoleBinding")
|
|
}
|
|
func (c *withTracing) ClusterRoles() k8s_io_client_go_kubernetes_typed_rbac_v1beta1.ClusterRoleInterface {
|
|
return clusterroles.WithTracing(c.inner.ClusterRoles(), c.client, "ClusterRole")
|
|
}
|
|
func (c *withTracing) RoleBindings(namespace string) k8s_io_client_go_kubernetes_typed_rbac_v1beta1.RoleBindingInterface {
|
|
return rolebindings.WithTracing(c.inner.RoleBindings(namespace), c.client, "RoleBinding")
|
|
}
|
|
func (c *withTracing) Roles(namespace string) k8s_io_client_go_kubernetes_typed_rbac_v1beta1.RoleInterface {
|
|
return roles.WithTracing(c.inner.Roles(namespace), c.client, "Role")
|
|
}
|
|
|
|
type withLogging struct {
|
|
inner k8s_io_client_go_kubernetes_typed_rbac_v1beta1.RbacV1beta1Interface
|
|
logger logr.Logger
|
|
}
|
|
|
|
func (c *withLogging) RESTClient() rest.Interface {
|
|
return c.inner.RESTClient()
|
|
}
|
|
func (c *withLogging) ClusterRoleBindings() k8s_io_client_go_kubernetes_typed_rbac_v1beta1.ClusterRoleBindingInterface {
|
|
return clusterrolebindings.WithLogging(c.inner.ClusterRoleBindings(), c.logger.WithValues("resource", "ClusterRoleBindings"))
|
|
}
|
|
func (c *withLogging) ClusterRoles() k8s_io_client_go_kubernetes_typed_rbac_v1beta1.ClusterRoleInterface {
|
|
return clusterroles.WithLogging(c.inner.ClusterRoles(), c.logger.WithValues("resource", "ClusterRoles"))
|
|
}
|
|
func (c *withLogging) RoleBindings(namespace string) k8s_io_client_go_kubernetes_typed_rbac_v1beta1.RoleBindingInterface {
|
|
return rolebindings.WithLogging(c.inner.RoleBindings(namespace), c.logger.WithValues("resource", "RoleBindings").WithValues("namespace", namespace))
|
|
}
|
|
func (c *withLogging) Roles(namespace string) k8s_io_client_go_kubernetes_typed_rbac_v1beta1.RoleInterface {
|
|
return roles.WithLogging(c.inner.Roles(namespace), c.logger.WithValues("resource", "Roles").WithValues("namespace", namespace))
|
|
}
|