Skip to content

Commit

Permalink
Update styling (#29)
Browse files Browse the repository at this point in the history
Signed-off-by: Fynn Späker <spaeker@23technologies.cloud>
  • Loading branch information
fynluk committed Apr 17, 2023
1 parent 4121bc2 commit ba30857
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions pkg/install/v1/install.go
Expand Up @@ -75,10 +75,9 @@ func Install(kubeconfig string, isDryRun bool) error {
_, err = git.PlainInit(gitRepoPath, true)
if err != nil {
return err
}
}
}


fmt.Println("Installing flux")
err = installFlux(kubeconfigArgs, kubeclientOptions)
if err != nil {
Expand Down Expand Up @@ -135,11 +134,10 @@ func Install(kubeconfig string, isDryRun bool) error {
fmt.Println("")
fmt.Println("Awesome. Your gardener installation should be up within 10 minutes.")
fmt.Printf("Once it's done you can login as %s.\n", color.BlueString(keConfiguration.Admin.Email))
fmt.Printf("Go kill some time by eagerly pressing F5 on https://dashboard.%s\n", color.BlueString(keConfiguration.DomainConfig.Domain))
fmt.Printf("Go kill some time by eagerly pressing F5 on %s%s\n", color.BlueString("https://dashboard."), color.BlueString(keConfiguration.DomainConfig.Domain))
return nil
}


func getKeConfig() (*KeConfig, error) {
keConfig := new(KeConfig)
err := UnmarshalKeConfig(keConfig)
Expand Down
2 changes: 1 addition & 1 deletion pkg/install/v2/install.go
Expand Up @@ -129,7 +129,7 @@ func Install(kubeconfig string, isDryRun bool) error {
fmt.Println("")
fmt.Println("Awesome. Your gardener installation should be up within 10 minutes.")
fmt.Printf("Once it's done you can login as %s.\n", color.BlueString(keConfiguration.Admin.Email))
fmt.Printf("Go kill some time by eagerly pressing F5 on https://dashboard.%s\n", color.BlueString(keConfiguration.DomainConfig.Domain))
fmt.Printf("Go kill some time by eagerly pressing F5 on %s%s\n", color.BlueString("https://dashboard."), color.BlueString(keConfiguration.DomainConfig.Domain))
return nil
}

Expand Down

0 comments on commit ba30857

Please sign in to comment.