Skip to content

Commit

Permalink
Fixed misleading error and typo on annotation (#601)
Browse files Browse the repository at this point in the history
  • Loading branch information
retpolanne authored Jun 7, 2019
1 parent f929669 commit 90af3cb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkg/server/app/errors.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ var (
ErrInvalidActionForCronJob = status.Errorf(codes.InvalidArgument, "Invalid action for a cronjob app")
ErrMissingVirtualHost = status.Errorf(
codes.InvalidArgument,
"Missing --vhost argument with the application domain",
"Missing --vhost or --reserve-static-ip argument with the application domain",
)
ErrInvalidBlankVHost = status.Errorf(
codes.InvalidArgument,
Expand Down
2 changes: 1 addition & 1 deletion pkg/server/cloudprovider/gce.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
)

const (
gceSSLCertAnnotation = "ingress.gce.kubernetes.io/pre-shared-cert"
gceSSLCertAnnotation = "ingress.gcp.kubernetes.io/pre-shared-cert"
gceStaticIPAnnotation = "kubernetes.io/ingress.global-static-ip-name"
)

Expand Down

0 comments on commit 90af3cb

Please sign in to comment.