Skip to content

Commit

Permalink
Kyma 1.2.2 (#146)
Browse files Browse the repository at this point in the history
* updated kyma to 1.2.2
* Fixed cluster info output tabulation (#144) (cherry picked from commit f0eefdd)
  • Loading branch information
a-thaler authored Jun 26, 2019
1 parent 60bc485 commit 8c53e71
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ before:
builds:
- env:
- CGO_ENABLED=0
- KYMA_VERSION=1.2.1
- KYMA_VERSION=1.2.2
ldflags: -X github.com/kyma-project/cli/pkg/kyma/cmd.Version={{.Version}} -X github.com/kyma-project/cli/pkg/kyma/cmd/install.DefaultKymaVersion={{.Env.KYMA_VERSION}}
main: ./cmd/kyma/
goos:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.DEFAULT_GOAL := local

KYMA_VERSION = 1.2.1
KYMA_VERSION = 1.2.2

ifndef VERSION
VERSION = ${shell git describe --tags --always}
Expand Down
6 changes: 3 additions & 3 deletions pkg/kyma/cmd/install/cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -795,10 +795,10 @@ func (cmd *command) printSummary() error {
fmt.Println(clusterInfo)
fmt.Println()
fmt.Printf("Kyma is installed in version %s\n", version)
fmt.Printf("Kyma console: https://console.%s\n", cmd.opts.Domain)
fmt.Printf("Kyma admin email: %s\n", emailDecoded)
fmt.Printf("Kyma console:\t\thttps://console.%s\n", cmd.opts.Domain)
fmt.Printf("Kyma admin email:\t%s\n", emailDecoded)
if cmd.opts.Password == "" || cmd.opts.NonInteractive {
fmt.Printf("Kyma admin password: %s\n", pwdDecoded)
fmt.Printf("Kyma admin password:\t%s\n", pwdDecoded)
}
fmt.Println()
fmt.Println("Happy Kyma-ing! :)")
Expand Down

0 comments on commit 8c53e71

Please sign in to comment.