Kubernetes create deployment unexpected SchemaError

后端 未结 18 1898
北荒
北荒 2020-12-24 00:29

I\'m following that tutorial (https://www.baeldung.com/spring-boot-minikube) I want to create Kubernetes deployment in yaml file (simple-crud-dpl.yaml):

apiV         


        
18条回答
  •  借酒劲吻你
    2020-12-24 01:08

    I don't think the problem is with imagePullPolicy, unless you don't have the image locally. The error is about autoscaling, which means it's not able to create replicas of the container.

    Can you set replicas: 1 and give it a try?

提交回复
热议问题