Browse Source

refactor: add new kuiper docker env (#509)

jinfahua 4 years atrás
parent
commit
e43275453f
1 changed files with 10 additions and 5 deletions
  1. 10 5
      deploy/docker/conf_util.go

+ 10 - 5
deploy/docker/conf_util.go

@@ -41,11 +41,16 @@ var file_keys_map = map[string]map[string]string{
 		"PRIVATEKEYPATH":     "privateKeyPath",
 	},
 	"kuiper": {
-		"CONSOLELOG":     "consoleLog",
-		"FILELOG":        "fileLog",
-		"RESTPORT":       "restPort",
-		"RESTTLS":        "restTls",
-		"PROMETHEUSPORT": "prometheusPort",
+		"CONSOLELOG":         "consoleLog",
+		"FILELOG":            "fileLog",
+		"RESTPORT":           "restPort",
+		"RESTTLS":            "restTls",
+		"PROMETHEUSPORT":     "prometheusPort",
+		"PLUGINHOSTS":        "pluginHosts",
+		"CHECKPOINTINTERVAL": "checkpointInterval",
+		"CACHETHRESHOLD":     "cacheThreshold",
+		"CACHETRIGGERCOUNT":  "cacheTriggerCount",
+		"DISABLECACHE":       "disableCache",
 	},
 }