我想更改在 K8S 上运行的 Golang 应用程序的日志配置,我在本地尝试了以下代码,它按预期工作我正在使用 viper 来监视配置文件更改
这是带有日志配置的配置图
apiVersion: v1
kind: ConfigMap
data:
config.yaml: 'log.level: error'
metadata:
name: app-config
namespace: logger
在部署 yaml 中我添加了以下内容
...
spec:
containers:
- name: gowebapp
image: mvd/myapp:0.0.3
- containerPort: 80
envFrom:
- configMapRef:
name: app-config
这是代码
package configuration
import (
"fmt"
"os"
"strings"
"github.com/fsnotify/fsnotify"
"github.com/sirupsen/logrus"
"github.com/spf13/viper"
)
const (
varLogLevel = "log.level
"
varPathToConfig = "config.file"
)
type Configuration struct {
v *viper.Viper
}
func New() *Configuration {
c := Configuration{
v: viper.New(),
}
c.v.SetDefault(varPathToConfig, "./config.yaml")
c.v.SetDefault(varLogLevel, "info")
c.v.AutomaticEnv()
c.v.SetConfigFile(c.GetPathToConfig())
err := c.v.ReadInConfig() // Find and read the config file
logrus.WithField("path", c.GetPathToConfig()).Warn("loading config")
if _, ok := err.(*os.PathError); ok {
logrus.Warnf("no config file '%s' not found. Using default values", c.GetPathToConfig())
} else if err != nil { // Handle other errors that occurred while reading the config file
panic(fmt.Errorf("fatal error while reading the config file: %s", err))
}
setLogLevel(c.GetLogLevel())
c.v.WatchConfig()
c.v.OnConfigChange(func(e fsnotify.Event) {
logrus.WithField("file", e.Name).Warn("Config file changed")
setLogLevel(c.GetLogLevel())
})
return &c
}
// GetLogLevel returns the log level
func (c *Configuration) GetLogLevel() string {
s := c.v.GetString(varLogLevel)
return s
}
现在,当我再次应用 yaml 文件并将值从 更改为error或warn等debug时,什么都没有改变……知道我在这里错过了什么吗?
我在 K8S 仪表板中看到配置映射已分配给应用程序,当我更改值时,我看到环境已更改...
HUH函数
茅侃侃
翻翻过去那场雪
相关分类