feat: add helm manifest for k8s and makefile (#444)

Signed-off-by: henrywangx <henrywangx@gmail.com>

Co-authored-by: xiong wang <xiong.wang@inceptio.ai>
This commit is contained in:
大雄
2022-02-15 21:47:13 +08:00
committed by GitHub
parent 7d1f368bc2
commit e35b058ab4
19 changed files with 717 additions and 4 deletions

View File

@ -16,6 +16,7 @@ package main
import (
"flag"
"fmt"
"github.com/astaxie/beego"
"github.com/astaxie/beego/logs"
@ -65,8 +66,8 @@ func main() {
if err != nil {
panic(err)
}
port := beego.AppConfig.DefaultInt("httpport", 8000)
//logs.SetLevel(logs.LevelInformational)
logs.SetLogFuncCall(false)
beego.Run()
beego.Run(fmt.Sprintf(":%v", port))
}