make badger
./bin/kube-brain --key-prefix "/"
这个启动命令示例是不是有点问题?直接这样运行会报错,没有看到有详细的文档介绍,看了一下代码,这个启动命令直接执行程序是起不来的,是否考虑换一个能直接执行的能够演示的启动命令
func (o *KubeBrainOption) Validate() error {
// 在这里check的时候如果key-prefix后缀是 "/" 程序就一直起不来,示例启动命令刚好是这个
if strings.HasSuffix(o.Prefix, "/") {
return fmt.Errorf("prefix %s is invalid, make sure it has no / suffix", o.Prefix)
}
return o.storageConfig.validate()
}
What did you expect to happen?
no
How can we reproduce it (as minimally and precisely as possible)?
What happened?
make badger ./bin/kube-brain --key-prefix "/" 这个启动命令示例是不是有点问题?直接这样运行会报错,没有看到有详细的文档介绍,看了一下代码,这个启动命令直接执行程序是起不来的,是否考虑换一个能直接执行的能够演示的启动命令
func (o *KubeBrainOption) Validate() error { // 在这里check的时候如果key-prefix后缀是 "/" 程序就一直起不来,示例启动命令刚好是这个 if strings.HasSuffix(o.Prefix, "/") { return fmt.Errorf("prefix %s is invalid, make sure it has no / suffix", o.Prefix) } return o.storageConfig.validate() }
What did you expect to happen?
no
How can we reproduce it (as minimally and precisely as possible)?
no
Software version