-
Notifications
You must be signed in to change notification settings - Fork 9
/
main.go
66 lines (53 loc) · 1.77 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
// Copyright 2022 Namespace Labs Inc; All rights reserved.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
package main
import (
"context"
"os"
"github.com/spf13/cobra"
"namespacelabs.dev/foundation/internal/cli/fncobra"
"namespacelabs.dev/foundation/internal/cli/nsboot"
"namespacelabs.dev/foundation/internal/compute"
"namespacelabs.dev/foundation/internal/fnerrors/format"
"namespacelabs.dev/foundation/internal/fnfs/fscache"
)
func main() {
fncobra.SetupViper()
compute.RegisterProtoCacheable()
compute.RegisterBytesCacheable()
fscache.RegisterFSCacheable()
rootCtx, style, flushLogs := fncobra.SetupContext(context.Background())
rootCmd := &cobra.Command{
Use: "nsboot",
Args: cobra.ArbitraryArgs,
SilenceUsage: true,
SilenceErrors: true,
DisableFlagParsing: true,
RunE: func(cmd *cobra.Command, args []string) error {
_, pkg, err := nsboot.CheckUpdate(cmd.Context(), false, "")
if err == nil {
// We make sure to flush all the output before starting the command.
flushLogs()
pkg.ExecuteAndForwardExitCode(context.Background(), style)
// Never returns.
}
return err
},
}
rootCmd.AddCommand(&cobra.Command{
Use: "update-ns",
Short: "Checks and downloads updates for the ns command.",
RunE: fncobra.RunEWithStarter(func(ctx context.Context, _ []string) error {
return nsboot.ForceUpdate(ctx)
}, nil),
})
rootCmd.Flags().ParseErrorsWhitelist.UnknownFlags = true
rootCmd.CompletionOptions.DisableDefaultCmd = true
rootCmd.SetHelpCommand(&cobra.Command{Hidden: true})
err := rootCmd.ExecuteContext(rootCtx)
flushLogs()
if err != nil {
format.Format(os.Stderr, err, format.WithStyle(style))
}
}