Fix: vela status --endpoint format (#3502)

Signed-off-by: Jianbo Sun <jianbo.sjb@alibaba-inc.com>
This commit is contained in:
Jianbo Sun 2022-03-24 09:47:15 +08:00 committed by GitHub
parent 8af5afa5dc
commit 723a5d83ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -429,7 +429,7 @@ func Info(app *corev1beta1.Application) string {
fmt.Sprintf(" SSH: vela exec %s\n", appName) +
fmt.Sprintf(" Logging: vela logs %s\n", appName) +
fmt.Sprintf(" App status: vela status %s\n", appName) +
fmt.Sprintf(" Endpoint: vela status %s\n --endpoint", appName)
fmt.Sprintf(" Endpoint: vela status %s --endpoint\n", appName)
return appUpMessage
}