Error parsing yaml file: mapping values are not allowed here

后端 未结 7 1713
清歌不尽
清歌不尽 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:25

    Another cause is wrong indentation which means trying to create the wrong objects. I've just fixed one in a Kubernetes Ingress definition:

    Wrong

    - path: / 
        backend: 
          serviceName: <service_name> 
          servicePort: <port> 
    

    Correct

    - path: /
      backend:
        serviceName: <service_name>
        servicePort: <port>
    
    0 讨论(0)
提交回复
热议问题