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格式是正确的。
答案 0 :(得分:1)
在冒号后需要一个空格。 containerPort: 80
,而不是containerPort:80
。 YAML对空格敏感。