在minikube中创建Pod时遇到以下错误

时间:2020-07-13 12:43:16

标签: linux kubernetes kubectl minikube kvm

kubectl create -f myfirstpod.yaml
error: error validating "myfirstpod.yaml": error validating data: ValidationError(Pod.spec.containers[0].ports[0]): invalid type for io.k8s.api.core.v1.ContainerPort: got "string", expected "map"; if you choose to ignore these errors, turn validation off with --validate=false

这是我遇到的错误 我搜索了很多,但找不到答案。 我认为我的Yaml格式是正确的。

This is the image of my yaml code

1 个答案:

答案 0 :(得分:1)

在冒号后需要一个空格。 containerPort: 80,而不是containerPort:80。 YAML对空格敏感。