mirror of
https://github.com/rancher/steve.git
synced 2025-04-27 11:00:48 +00:00
This uses SQLite-backed informers provided by Lasso with https://github.com/rancher/lasso/pull/65 to implement Steve API (/v1/) functionality. This new functionality is available behind a feature flag to be specified at Steve startup See https://confluence.suse.com/pages/viewpage.action?pageId=1359086083 Co-authored-by: Ricardo Weir <ricardo.weir@suse.com> Co-authored-by: Michael Bolot <michael.bolot@suse.com> Co-authored-by: Silvio Moioli <silvio@moioli.net> Signed-off-by: Silvio Moioli <silvio@moioli.net>
43 lines
863 B
Go
43 lines
863 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/rancher/steve/pkg/debug"
|
|
stevecli "github.com/rancher/steve/pkg/server/cli"
|
|
"github.com/rancher/steve/pkg/version"
|
|
"github.com/rancher/wrangler/v2/pkg/signals"
|
|
"github.com/sirupsen/logrus"
|
|
"github.com/urfave/cli"
|
|
)
|
|
|
|
var (
|
|
config stevecli.Config
|
|
debugconfig debug.Config
|
|
)
|
|
|
|
func main() {
|
|
app := cli.NewApp()
|
|
app.Name = "steve"
|
|
app.Version = version.FriendlyVersion()
|
|
app.Usage = ""
|
|
app.Flags = append(
|
|
stevecli.Flags(&config),
|
|
debug.Flags(&debugconfig)...)
|
|
app.Action = run
|
|
|
|
if err := app.Run(os.Args); err != nil {
|
|
logrus.Fatal(err)
|
|
}
|
|
}
|
|
|
|
func run(_ *cli.Context) error {
|
|
ctx := signals.SetupSignalContext()
|
|
debugconfig.MustSetupDebug()
|
|
s, err := config.ToServer(ctx, false)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return s.ListenAndServe(ctx, config.HTTPSListenPort, config.HTTPListenPort, nil)
|
|
}
|