-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
worker: Command to print resource-table env vars
- Loading branch information
Showing
3 changed files
with
89 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -60,6 +60,7 @@ func main() { | |
storageCmd, | ||
setCmd, | ||
waitQuietCmd, | ||
resourcesCmd, | ||
tasksCmd, | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
package main | ||
|
||
import ( | ||
"fmt" | ||
"os" | ||
"sort" | ||
|
||
"github.com/urfave/cli/v2" | ||
|
||
"github.com/filecoin-project/lotus/extern/sector-storage/storiface" | ||
) | ||
|
||
var resourcesCmd = &cli.Command{ | ||
Name: "resources", | ||
Usage: "Manage resource table overrides", | ||
Flags: []cli.Flag{ | ||
&cli.BoolFlag{ | ||
Name: "all", | ||
Usage: "print all resource envvars", | ||
}, | ||
&cli.BoolFlag{ | ||
Name: "default", | ||
Usage: "print all resource envvars", | ||
}, | ||
}, | ||
Action: func(cctx *cli.Context) error { | ||
def := map[string]string{} | ||
set := map[string]string{} | ||
all := map[string]string{} | ||
|
||
_, err := storiface.ParseResourceEnv(func(key, d string) (string, bool) { | ||
if d != "" { | ||
all[key] = d | ||
def[key] = d | ||
} | ||
|
||
s, ok := os.LookupEnv(key) | ||
if ok { | ||
all[key] = s | ||
set[key] = s | ||
} | ||
|
||
return s, ok | ||
}) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
printMap := func(m map[string]string) { | ||
var arr []string | ||
for k, v := range m { | ||
arr = append(arr, fmt.Sprintf("%s=%s", k, v)) | ||
} | ||
sort.Strings(arr) | ||
for _, s := range arr { | ||
fmt.Println(s) | ||
} | ||
} | ||
|
||
if cctx.Bool("default") { | ||
printMap(def) | ||
} else { | ||
if cctx.Bool("all") { | ||
printMap(all) | ||
} else { | ||
printMap(set) | ||
} | ||
} | ||
|
||
return nil | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters