Вот есть у меня файлик:
apiVersion: apps/v1
kind: Deployment
metadata:
name: nginx-deployment
labels:
app: nginx
spec:
replicas: 3
selector:
matchLabels:
app: nginx
template:
metadata:
labels:
app: nginx
spec:
containers:
- name: nginx
image: nginx:1.7.9
ports:
- containerPort: 80
А вот что я получаю:
$ podman play kube simple.yml
Error: Invalid YAML kind: Deployment. Pod is the only supported Kubernetes YAML kind
Сам ямлик в кубер апплаится.
Это первый опыт =\
Спасибо.