Open eyal-mor opened 3 years ago
Is this happen in an specific Stage? I'm trying to replicate the issue using an AWS Lambda Deployment stage forcing a pipeline to throw an error and it is showing the proper details...
Please provide more details to try to replicate this issue.
Another example:
In my case - after digging around logs and looking through the stage configuration - it was an incorrect account being set.
This can be done by putting a SpEL expression as the account value in the JSON representation of the stage. Like so:
{
"account": "${parameters[\"account_name\"]}",
"batchsize": 10,
"cloudProvider": "aws",
...
}
If a correct account name is passed in, that error does not happen. If an incorrect account is passed in, that error is provided, leaving you to figure things out.
It would be nice to have the error at least point in the general direction - or better, something along the lines of "your account is wrong." (in my case) or whatever the issue may be.
If a specific region
isn't enabled in the expected Spinnaker account, the following error message is returned.
In cases where the Lambda Plugin fails (I.E.
NullPointerException
), the UI printsNo reason provided.
Reproducing
There are no clear reproduction steps currently.