Skip to content

Commit ba30857

Browse files
authored
Update styling (#29)
Signed-off-by: Fynn Späker <spaeker@23technologies.cloud>
1 parent 4121bc2 commit ba30857

2 files changed

Lines changed: 3 additions & 5 deletions

File tree

pkg/install/v1/install.go

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,9 @@ func Install(kubeconfig string, isDryRun bool) error {
7575
_, err = git.PlainInit(gitRepoPath, true)
7676
if err != nil {
7777
return err
78-
}
78+
}
7979
}
8080

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

142-
143141
func getKeConfig() (*KeConfig, error) {
144142
keConfig := new(KeConfig)
145143
err := UnmarshalKeConfig(keConfig)

pkg/install/v2/install.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ func Install(kubeconfig string, isDryRun bool) error {
129129
fmt.Println("")
130130
fmt.Println("Awesome. Your gardener installation should be up within 10 minutes.")
131131
fmt.Printf("Once it's done you can login as %s.\n", color.BlueString(keConfiguration.Admin.Email))
132-
fmt.Printf("Go kill some time by eagerly pressing F5 on https://dashboard.%s\n", color.BlueString(keConfiguration.DomainConfig.Domain))
132+
fmt.Printf("Go kill some time by eagerly pressing F5 on %s%s\n", color.BlueString("https://dashboard."), color.BlueString(keConfiguration.DomainConfig.Domain))
133133
return nil
134134
}
135135

0 commit comments

Comments
 (0)