Skip to content

Commit 4e066fd

Browse files
feat: Add CLI flag support for bk configure command (#407)
1 parent 956bd9e commit 4e066fd

File tree

2 files changed

+21
-9
lines changed

2 files changed

+21
-9
lines changed

pkg/cmd/configure/add/add.go

+8-8
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,13 @@ func NewCmdAdd(f *factory.Factory) *cobra.Command {
2222
return cmd
2323
}
2424

25+
func ConfigureWithCredentials(f *factory.Factory, org, token string) error {
26+
if err := f.Config.SelectOrganization(org); err != nil {
27+
return err
28+
}
29+
return f.Config.SetTokenForOrg(org, token)
30+
}
31+
2532
func ConfigureRun(f *factory.Factory) error {
2633
var org, token string
2734
nonEmpty := func(s string) error {
@@ -43,12 +50,5 @@ func ConfigureRun(f *factory.Factory) error {
4350
return err
4451
}
4552

46-
err = f.Config.SelectOrganization(org)
47-
if err != nil {
48-
return err
49-
}
50-
51-
err = f.Config.SetTokenForOrg(org, token)
52-
53-
return err
53+
return ConfigureWithCredentials(f, org, token)
5454
}

pkg/cmd/configure/configure.go

+13-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,11 @@ import (
99
)
1010

1111
func NewCmdConfigure(f *factory.Factory) *cobra.Command {
12-
var force bool
12+
var (
13+
force bool
14+
org string
15+
token string
16+
)
1317

1418
cmd := &cobra.Command{
1519
Use: "configure",
@@ -22,11 +26,19 @@ func NewCmdConfigure(f *factory.Factory) *cobra.Command {
2226
return errors.New("API token already configured. You must use --force.")
2327
}
2428

29+
// If flags are provided, use them directly
30+
if org != "" && token != "" {
31+
return addCmd.ConfigureWithCredentials(f, org, token)
32+
}
33+
34+
// Otherwise fall back to interactive mode
2535
return addCmd.ConfigureRun(f)
2636
},
2737
}
2838

2939
cmd.Flags().BoolVar(&force, "force", false, "Force setting a new token")
40+
cmd.Flags().StringVar(&org, "org", "", "Organization slug")
41+
cmd.Flags().StringVar(&token, "token", "", "API token")
3042

3143
cmd.AddCommand(addCmd.NewCmdAdd(f))
3244

0 commit comments

Comments
 (0)