Error parsing yaml file: mapping values are not allowed here

后端 未结 7 1718
清歌不尽
清歌不尽 2021-01-30 15:53

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         


        
7条回答
  •  傲寒
    傲寒 (楼主)
    2021-01-30 16:21

    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'
    

提交回复
热议问题