Skip to content

feat: Allow running standalone provisioner daemons #3563

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 10 commits into from
Closed
Prev Previous commit
Next Next commit
Merge remote-tracking branch 'origin/main' into dwahler/provisionerd
  • Loading branch information
dwahler committed Aug 26, 2022
commit 940f458df87a031f754ac54d70f3e1ac1e247b34
2 changes: 1 addition & 1 deletion cli/provisionercreate.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ func provisionerCreate() *cobra.Command {
Short: "Create a provisioner daemon instance",
Args: cobra.ExactArgs(1),
RunE: func(cmd *cobra.Command, args []string) error {
client, err := createClient(cmd)
client, err := CreateClient(cmd)
if err != nil {
return err
}
Expand Down
2 changes: 1 addition & 1 deletion cli/provisionerrun.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ func provisionerRun() *cobra.Command {
logger = logger.Leveled(slog.LevelDebug)
}

client, err := createClient(cmd)
client, err := CreateClient(cmd)
if err != nil {
return err
}
Expand Down
Loading
You are viewing a condensed version of this merge commit. You can view the full changes here.