Skip to content

Commit

Permalink
Update error message
Browse files Browse the repository at this point in the history
  • Loading branch information
lblackstone committed Nov 28, 2018
1 parent 28c4a56 commit 861dc8a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions pkg/await/extensions_ingress.go
Original file line number Diff line number Diff line change
Expand Up @@ -327,8 +327,8 @@ func (iia *ingressInitAwaiter) errorMessages() []string {

if !iia.ingressReady {
messages = append(messages,
"Ingress .status.loadBalancer field was not updated with a hostname/IP address. " +
"<pulumi.io/help/k8s-ingress-lbstatus>")
"Ingress .status.loadBalancer field was not updated with a hostname/IP address. "+
"\n for more information about this error, see https://pulumi.io/xdv72s")
}

return messages
Expand Down
8 changes: 4 additions & 4 deletions pkg/await/extensions_ingress_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ func Test_Extensions_Ingress(t *testing.T) {
"Ingress has at least one rule that does not target any Service. " +
"Field '.spec.rules[].http.paths[].backend.serviceName' may not match any active Service",
"Ingress .status.loadBalancer field was not updated with a hostname/IP address. " +
"<pulumi.io/help/k8s-ingress-lbstatus>",
"\n for more information about this error, see https://pulumi.io/xdv72s",
}},
},
{
Expand Down Expand Up @@ -82,7 +82,7 @@ func Test_Extensions_Ingress(t *testing.T) {
object: ingressInput("default", "foo", "foo-4setj4y6"),
subErrors: []string{
"Ingress .status.loadBalancer field was not updated with a hostname/IP address. " +
"<pulumi.io/help/k8s-ingress-lbstatus>",
"\n for more information about this error, see https://pulumi.io/xdv72s",
}},
},
}
Expand Down Expand Up @@ -133,7 +133,7 @@ func Test_Extensions_Ingress_Read(t *testing.T) {
endpoint: initializedEndpoint,
expectedSubErrors: []string{
"Ingress .status.loadBalancer field was not updated with a hostname/IP address. " +
"<pulumi.io/help/k8s-ingress-lbstatus>",
"\n for more information about this error, see https://pulumi.io/xdv72s",
},
},
{
Expand All @@ -144,7 +144,7 @@ func Test_Extensions_Ingress_Read(t *testing.T) {
"Ingress has at least one rule that does not target any Service. " +
"Field '.spec.rules[].http.paths[].backend.serviceName' may not match any active Service",
"Ingress .status.loadBalancer field was not updated with a hostname/IP address. " +
"<pulumi.io/help/k8s-ingress-lbstatus>",
"\n for more information about this error, see https://pulumi.io/xdv72s",
},
},
}
Expand Down

0 comments on commit 861dc8a

Please sign in to comment.