Skip to content
Snippets Groups Projects
Commit 1b23d6cc authored by kaiyou's avatar kaiyou
Browse files

Switch back to single hepto command for the sake of simplicity

parent a311a8d7
No related branches found
No related tags found
No related merge requests found
package hepto package hepto
import ( import (
"io"
"net" "net"
"github.com/go-logr/logr" "github.com/go-logr/logr"
"github.com/go-logr/zapr" "github.com/spf13/cobra"
"github.com/spf13/pflag"
"github.com/spf13/viper"
"go.acides.org/hepto/services" "go.acides.org/hepto/services"
"go.acides.org/hepto/utils"
) )
type Config struct { type Config struct {
...@@ -31,18 +31,32 @@ type Config struct { ...@@ -31,18 +31,32 @@ type Config struct {
var config Config var config Config
func (c *Config) SetupLogger(output io.ReadWriteCloser) error { func init() {
// Initialize logging, default to warn level // Hide unwanted flags declared inside k8s init() directly
zapLogger, logrusLogger, err := utils.NewLoggers(c.LogLevel, output) pflag.CommandLine.MarkHidden("azure-container-registry-config")
if err != nil { cobra.OnInitialize(viper.AutomaticEnv)
return err
} // General config
// Use a standard logr logger for most things Hepto.PersistentFlags().CountVarP(&config.LogLevel, "verbose", "v", "Make logs more verbose")
logger := zapr.NewLogger(zapLogger) Hepto.PersistentFlags().BoolVar(&config.Pprof, "pprof", false, "Enable Golang pprof profiling")
c.Logger = logger Hepto.PersistentFlags().StringVar(&config.DataDir, "data", "/var/lib", "Data root directory")
c.Cluster.Logger = logger Hepto.PersistentFlags().BoolVar(&config.BypassIPCheck, "bypass-ip-check", false, "Bypass initial IP check")
// Pass low level loggers for hooking (containerd and k8s mostly)
c.Cluster.ZapLogger = zapLogger // Cluster settings
c.Cluster.LogrusLogger = logrusLogger Hepto.PersistentFlags().StringVar(&config.Cluster.Name, "cluster", "hepto", "Hepto cluster name")
return nil Hepto.PersistentFlags().BytesHexVar(&config.Cluster.Key, "key", []byte{}, "Main cluster 32bytes key, hex-encoded")
Hepto.PersistentFlags().IntVar(&config.Cluster.LoopbackPort, "loopback", 6443, "Loopback apiserver port")
// Container settings
Hepto.PersistentFlags().StringVar(&config.Iface, "iface", "eth0", "Master network interface")
Hepto.PersistentFlags().IPNetVar(&config.Address, "ip", net.IPNet{}, "IP address for the public interface")
Hepto.PersistentFlags().IPVar(&config.Gateway, "gw", net.IP{}, "IP address of the network gateway")
Hepto.PersistentFlags().IPSliceVar(&config.DNS, "dns", defaultDNS, "DNS server IP addresses")
Hepto.PersistentFlags().StringToStringVar(&config.Mounts, "bind", map[string]string{}, "Additional bind mounts")
// Node settings
Hepto.PersistentFlags().IntVar(&config.Node.Port, "discovery-port", 7123, "TCP port used for discovering the cluster")
Hepto.PersistentFlags().StringVar(&config.Node.Name, "name", "", "Hepto node name")
Hepto.PersistentFlags().StringSliceVar(&config.Node.Anchors, "anchors", []string{}, "List of cluster anchors")
Hepto.PersistentFlags().StringVar(&config.Node.Role, "role", "node", "Node role inside the cluster")
} }
...@@ -8,11 +8,11 @@ import ( ...@@ -8,11 +8,11 @@ import (
"path" "path"
"time" "time"
"github.com/go-logr/zapr"
"github.com/spf13/cobra" "github.com/spf13/cobra"
"github.com/spf13/pflag"
"github.com/spf13/viper"
"go.acides.org/dolly" "go.acides.org/dolly"
"go.acides.org/hepto/services" "go.acides.org/hepto/services"
"go.acides.org/hepto/utils"
"k8s.io/component-base/version/verflag" "k8s.io/component-base/version/verflag"
"k8s.io/component-helpers/node/util/sysctl" "k8s.io/component-helpers/node/util/sysctl"
) )
...@@ -22,19 +22,24 @@ var Hepto = &cobra.Command{ ...@@ -22,19 +22,24 @@ var Hepto = &cobra.Command{
Short: "A highly opinionated geo-distributed Kubernetes distro", Short: "A highly opinionated geo-distributed Kubernetes distro",
Long: `Hepto is a Kubernetes distribution designed for geo-distributed Long: `Hepto is a Kubernetes distribution designed for geo-distributed
deployments, including across links with noticeable latency.`, deployments, including across links with noticeable latency.`,
PersistentPreRunE: func(cmd *cobra.Command, args []string) error { PreRunE: func(cmd *cobra.Command, args []string) error {
config.Cluster.DataDir = "/data" config.Cluster.DataDir = "/data"
// Print version if requested, verflag flags are declared // Print version if requested, verflag flags are declared
// by init() functions deep in k8s code // by init() functions deep in k8s code
verflag.PrintAndExitIfRequested() verflag.PrintAndExitIfRequested()
return config.SetupLogger(os.Stderr)
},
}
var Start = &cobra.Command{ // Initialize logging, default to warn level
Use: "start", zapLogger, logrusLogger, err := utils.NewLoggers(config.LogLevel, os.Stderr)
Short: "Start the hepto service", if err != nil {
PreRunE: func(cmd *cobra.Command, args []string) error { return err
}
// Use a standard logr logger for most things
logger := zapr.NewLogger(zapLogger)
config.Logger = logger
config.Cluster.Logger = logger
// Pass low level loggers for hooking (containerd and k8s mostly)
config.Cluster.ZapLogger = zapLogger
config.Cluster.LogrusLogger = logrusLogger
// Set the proper sysctl for the cluster // Set the proper sysctl for the cluster
// Copied from https://github.com/kubernetes/kubernetes/blob/master/pkg/kubelet/cm/container_manager_linux.go // Copied from https://github.com/kubernetes/kubernetes/blob/master/pkg/kubelet/cm/container_manager_linux.go
desiredState := map[string]int{ desiredState := map[string]int{
...@@ -111,11 +116,12 @@ var Start = &cobra.Command{ ...@@ -111,11 +116,12 @@ var Start = &cobra.Command{
ContainerPort: 6443, ContainerPort: 6443,
}, },
) )
return container.Run(runHepto) return container.Run(hepto)
}, },
} }
func runHepto() error { // The actuall hepto code, run inside a container by the command
func hepto() error {
// Install ourselves as a hooking binary // Install ourselves as a hooking binary
self, err := os.Executable() self, err := os.Executable()
if err != nil { if err != nil {
...@@ -180,34 +186,3 @@ func runHepto() error { ...@@ -180,34 +186,3 @@ func runHepto() error {
} }
return c.Run() return c.Run()
} }
func init() {
// Hide unwanted flags declared inside k8s init() directly
pflag.CommandLine.MarkHidden("azure-container-registry-config")
cobra.OnInitialize(viper.AutomaticEnv)
Hepto.AddCommand(Start)
// General config
Hepto.PersistentFlags().CountVarP(&config.LogLevel, "verbose", "v", "Make logs more verbose")
Hepto.PersistentFlags().BoolVar(&config.Pprof, "pprof", false, "Enable Golang pprof profiling")
Hepto.PersistentFlags().StringVar(&config.DataDir, "data", "/var/lib", "Data root directory")
Hepto.PersistentFlags().BoolVar(&config.BypassIPCheck, "bypass-ip-check", false, "Bypass initial IP check")
// Cluster settings
Hepto.PersistentFlags().StringVar(&config.Cluster.Name, "cluster", "hepto", "Hepto cluster name")
Hepto.PersistentFlags().BytesHexVar(&config.Cluster.Key, "key", []byte{}, "Main cluster 32bytes key, hex-encoded")
Hepto.PersistentFlags().IntVar(&config.Cluster.LoopbackPort, "loopback", 6443, "Loopback apiserver port")
// Container settings
Hepto.PersistentFlags().StringVar(&config.Iface, "iface", "eth0", "Master network interface")
Hepto.PersistentFlags().IPNetVar(&config.Address, "ip", net.IPNet{}, "IP address for the public interface")
Hepto.PersistentFlags().IPVar(&config.Gateway, "gw", net.IP{}, "IP address of the network gateway")
Hepto.PersistentFlags().IPSliceVar(&config.DNS, "dns", defaultDNS, "DNS server IP addresses")
Hepto.PersistentFlags().StringToStringVar(&config.Mounts, "bind", map[string]string{}, "Additional bind mounts")
// Node settings
Hepto.PersistentFlags().IntVar(&config.Node.Port, "discovery-port", 7123, "TCP port used for discovering the cluster")
Hepto.PersistentFlags().StringVar(&config.Node.Name, "name", "", "Hepto node name")
Hepto.PersistentFlags().StringSliceVar(&config.Node.Anchors, "anchors", []string{}, "List of cluster anchors")
Hepto.PersistentFlags().StringVar(&config.Node.Role, "role", "node", "Node role inside the cluster")
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment