AlinsRan commented on code in PR #1369:
URL:
https://github.com/apache/apisix-ingress-controller/pull/1369#discussion_r1008987607
##########
pkg/apisix/apisix.go:
##########
@@ -152,6 +154,14 @@ type PluginConfig interface {
Update(context.Context, *v1.PluginConfig) (*v1.PluginConfig, error)
}
+type PluginMetadata interface {
+ Get(context.Context, string) (*v1.PluginMetadata, error)
+ List(context.Context) ([]*v1.PluginMetadata, error)
+ Create(context.Context, *v1.PluginMetadata) (*v1.PluginMetadata, error)
+ Delete(context.Context, *v1.PluginMetadata) error
+ Update(context.Context, *v1.PluginMetadata) (*v1.PluginMetadata, error)
+}
Review Comment:
Here is the e2e verification of all interfaces.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]