I want to upload an app to Google App Engine:
I get this
Error parsing yaml file:
mapping values are not allowed here
in \"/home/antonio/Desktop/ATI/cl
I've seen this error in a similar situation to mentioned in Joe's answer:
description: Too high 5xx responses rate: {{ .Value }} > 0.05
We have a colon in description value. So, the problem is in missing quotes around description value. It can be resolved by adding quotes:
description: 'Too high 5xx responses rate: {{ .Value }} > 0.05'