[VOL-4663] create voltha event topic (voltha.events) with conifgurable no of partitions and replication factor

Change-Id: Ibaf8681ccdbffcc8a3c68612c49d7822a20e1b14
diff --git a/types.go b/types.go
index 1c99a12..2f92844 100644
--- a/types.go
+++ b/types.go
@@ -19,6 +19,8 @@
 	Name        string   `yaml: name`
 	Host        string   `yaml: host`
 	Description string   `yaml: description`
+	Partitions  int      `yaml: partitions`
+	Replicas    int      `yaml: replicas`
 	Topics      []string `yaml: topics`
 }
 
@@ -35,7 +37,7 @@
 }
 
 type ConvInfo struct {
-	Onusnhex  bool `yaml: onusnhex`
+	Onusnhex bool `yaml: onusnhex`
 }
 
 type Config struct {