k8s-training-app/01_nginx/yaml/02_deployment.yaml

23 lines
335 B
YAML

---
apiVersion: apps/v1
kind: Deployment
metadata:
name: nginx
spec:
replicas: 1
selector:
matchLabels:
app: nginx
template:
metadata:
labels:
app: nginx
spec:
containers:
- name: nginx
image: nginx:stable
ports:
- containerPort: 80
# vim: set ts=2 sw=2 et: