mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
7101af36bb
* Update to v1.29.0 Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> * Update to v1.29.0 Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> * Update go to 1.21.5 Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> * update golangci-lint Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> * update flannel to 0.23.0-k3s1 This update uses k3s' fork of flannel to allow the removal of multicluster cidr flag logic from the code Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> * fix flannel calls Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> * update cri-tools to version v1.29.0-k3s1 Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> * Remove GOEXPERIMENT=nounified from arm builds Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> * Skip golangci-lint Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> * Fix setup logging with newer go version Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> * Move logging flags to components arguments Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> * add sysctl commands to the test script Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> * Update scripts/test Signed-off-by: Brad Davidson <brad@oatmail.org> * disable secretsencryption tests Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> --------- Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> Signed-off-by: Brad Davidson <brad@oatmail.org> Co-authored-by: Brad Davidson <brad@oatmail.org>
78 lines
1.5 KiB
Go
78 lines
1.5 KiB
Go
package cmds
|
|
|
|
import (
|
|
"fmt"
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/sirupsen/logrus"
|
|
"github.com/urfave/cli"
|
|
)
|
|
|
|
type Log struct {
|
|
VLevel int
|
|
VModule string
|
|
LogFile string
|
|
AlsoLogToStderr bool
|
|
}
|
|
|
|
var (
|
|
LogConfig Log
|
|
|
|
VLevel = &cli.IntFlag{
|
|
Name: "v",
|
|
Usage: "(logging) Number for the log level verbosity",
|
|
Destination: &LogConfig.VLevel,
|
|
}
|
|
VModule = &cli.StringFlag{
|
|
Name: "vmodule",
|
|
Usage: "(logging) Comma-separated list of FILE_PATTERN=LOG_LEVEL settings for file-filtered logging",
|
|
Destination: &LogConfig.VModule,
|
|
}
|
|
LogFile = &cli.StringFlag{
|
|
Name: "log,l",
|
|
Usage: "(logging) Log to file",
|
|
Destination: &LogConfig.LogFile,
|
|
}
|
|
AlsoLogToStderr = &cli.BoolFlag{
|
|
Name: "alsologtostderr",
|
|
Usage: "(logging) Log to standard error as well as file (if set)",
|
|
Destination: &LogConfig.AlsoLogToStderr,
|
|
}
|
|
|
|
logSetupOnce sync.Once
|
|
)
|
|
|
|
func InitLogging() error {
|
|
var rErr error
|
|
logSetupOnce.Do(func() {
|
|
if err := forkIfLoggingOrReaping(); err != nil {
|
|
rErr = err
|
|
return
|
|
}
|
|
|
|
if err := checkUnixTimestamp(); err != nil {
|
|
rErr = err
|
|
return
|
|
}
|
|
|
|
setupLogging()
|
|
})
|
|
return rErr
|
|
}
|
|
|
|
func checkUnixTimestamp() error {
|
|
timeNow := time.Now()
|
|
// check if time before 01/01/1980
|
|
if timeNow.Before(time.Unix(315532800, 0)) {
|
|
return fmt.Errorf("server time isn't set properly: %v", timeNow)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func setupLogging() {
|
|
if Debug {
|
|
logrus.SetLevel(logrus.DebugLevel)
|
|
}
|
|
}
|