Skip to content

Commit

Permalink
Point the up command to the bootstrap main branch (#525)
Browse files Browse the repository at this point in the history
Also added a bit more help messages in it.
  • Loading branch information
michaeljguarino authored Jul 17, 2024
1 parent fd27d95 commit 4e31edc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions cmd/plural/up.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ func (p *Plural) handleUp(c *cli.Context) error {
return err
}

utils.Success("Finished setting up your management cluster!\n")
utils.Highlight("Feel free to use `terrafrom` as you normally would, and leverage the gitops setup we've generated in the `apps/` subfolder\n")
return nil
}

Expand Down
2 changes: 1 addition & 1 deletion pkg/up/generate.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ func (ctx *Context) Cleanup() {

func (ctx *Context) Generate() error {
if !utils.Exists("./bootstrap") {
if err := git.BranchedSubmodule("https://github.com/pluralsh/bootstrap.git", "refactored-up"); err != nil {
if err := git.BranchedSubmodule("https://github.com/pluralsh/bootstrap.git", "main"); err != nil {
return err
}
}
Expand Down

0 comments on commit 4e31edc

Please sign in to comment.