Skip to content

Commit

Permalink
Fix end screen (#138)
Browse files Browse the repository at this point in the history
Signed-off-by: 6za <53096417+6za@users.noreply.github.com>
  • Loading branch information
6za committed Jul 20, 2022
1 parent 2cf53e4 commit 05fa4f1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ to quickly create a Cobra application.`,

GitlabURL: fmt.Sprintf("https://gitlab.%s", viper.GetString("aws.hostedzonename")),
GitlabUser: "root",
GitlabPassword: viper.GetString("gitlab.token"),
GitlabPassword: viper.GetString("gitlab.root.password"),

RepoGitops: fmt.Sprintf("https://gitlab.%s/kubefirst/gitops", viper.GetString("aws.hostedzonename")),
RepoMetaphor: fmt.Sprintf("https://gitlab.%s/kubefirst/metaphor", viper.GetString("aws.hostedzonename")),
Expand Down
4 changes: 4 additions & 0 deletions internal/aws/aws.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,10 @@ func GetAccountInfo() {
}

func TestHostedZoneLiveness(dryRun bool, hostedZoneName, hostedZoneId string) {
if dryRun {
log.Printf("[#99] Dry-run mode, TestHostedZoneLiveness skipped.")
return
}
//tracker := progress.Tracker{Message: "testing hosted zone", Total: 25}

// todo need to create single client and pass it
Expand Down

0 comments on commit 05fa4f1

Please sign in to comment.