minor fix

Signed-off-by: Yingchu Chen <yingchu.chen@merico.dev>
diff --git a/deployment/helm/values.yaml b/deployment/helm/values.yaml
index 6a8f715..c623ede 100644
--- a/deployment/helm/values.yaml
+++ b/deployment/helm/values.yaml
@@ -33,8 +33,9 @@
 
   # image for mysql
   image:
+    platform: arm64v8/mysql
     repository: mysql
-    tag: 8.0.26
+    tag: 8.0.28-oracle
     pullPolicy: IfNotPresent
   
   # resources config for mysql if have
diff --git a/plugins/icla/plugin_main.go b/plugins/icla/plugin_main.go
index 5bcf234..9e6271b 100644
--- a/plugins/icla/plugin_main.go
+++ b/plugins/icla/plugin_main.go
@@ -95,7 +95,7 @@
 	// _ = cmd.MarkFlagRequired("yourFlag")
 
 	cmd.Run = func(cmd *cobra.Command, args []string) {
-		runner.DirectRun(cmd, args, PluginEntry, []string{}, map[string]interface{}{
+		runner.DirectRun(cmd, args, PluginEntry, map[string]interface{}{
 			// TODO add more custom params here
 		})
 	}