mirror of
https://github.com/gogf/gf.git
synced 2025-04-05 03:05:05 +08:00
38 lines
874 B
Go
38 lines
874 B
Go
// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
|
|
//
|
|
// This Source Code Form is subject to the terms of the MIT License.
|
|
// If a copy of the MIT was not distributed with this file,
|
|
// You can obtain one at https://github.com/gogf/gf.
|
|
|
|
package boot
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/frame/g"
|
|
"github.com/gogf/gf/v2/os/gctx"
|
|
|
|
"github.com/gogf/gf/contrib/config/kubecm/v2"
|
|
)
|
|
|
|
const (
|
|
configmapName = "test-configmap"
|
|
dataItemInConfigmap = "config.yaml"
|
|
)
|
|
|
|
func init() {
|
|
var (
|
|
err error
|
|
ctx = gctx.GetInitCtx()
|
|
)
|
|
// Create kubecm Client that implements gcfg.Adapter.
|
|
adapter, err := kubecm.New(gctx.GetInitCtx(), kubecm.Config{
|
|
ConfigMap: configmapName,
|
|
DataItem: dataItemInConfigmap,
|
|
})
|
|
if err != nil {
|
|
g.Log().Fatalf(ctx, `%+v`, err)
|
|
}
|
|
|
|
// Change the adapter of default configuration instance.
|
|
g.Cfg().SetAdapter(adapter)
|
|
}
|