From f92e30934389187605d70f0c74fe3a14d6a884dd Mon Sep 17 00:00:00 2001 From: huanggze Date: Thu, 20 Jun 2019 22:12:21 +0800 Subject: [PATCH] api doc: remove apis for fluent bit filter plugins Signed-off-by: huanggze --- pkg/apis/logging/v1alpha2/register.go | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/pkg/apis/logging/v1alpha2/register.go b/pkg/apis/logging/v1alpha2/register.go index 705579bf4..1e2d23035 100644 --- a/pkg/apis/logging/v1alpha2/register.go +++ b/pkg/apis/logging/v1alpha2/register.go @@ -186,20 +186,6 @@ func addWebService(c *restful.Container) error { Consumes(restful.MIME_JSON, restful.MIME_XML). Produces(restful.MIME_JSON) - ws.Route(ws.GET("/fluentbit/filters").To(logging.LoggingQueryFluentbitFilters). - Filter(filter.Logging). - Doc("List all Fluent bit filter plugins. This API is work-in-process."). - Metadata(restfulspec.KeyOpenAPITags, []string{"Logging", "setting"})). - Consumes(restful.MIME_JSON, restful.MIME_XML). - Produces(restful.MIME_JSON) - - ws.Route(ws.POST("/fluentbit/filters").To(logging.LoggingUpdateFluentbitFilters). - Filter(filter.Logging). - Doc("Add a new Fluent bit filter plugin. This API is work-in-process."). - Metadata(restfulspec.KeyOpenAPITags, []string{"Logging", "setting"})). - Consumes(restful.MIME_JSON, restful.MIME_XML). - Produces(restful.MIME_JSON) - ws.Route(ws.GET("/fluentbit/outputs").To(logging.LoggingQueryFluentbitOutputs). Filter(filter.Logging). Doc("List all Fluent bit output plugins.").