apiVersion: apps/v1
kind: Deployment
metadata:
name: nginx-deploy
labels:
app: myapp-deploy
type: front-end
spec:
template:
metadata:
name: nginx
labels:
app: myapp
type: front-end
spec:
containers:
- name: nginx
image: nginx:1.14.2
ports:
- containerPort: 80
selector:
matchLabels:
type: front-end
replicas: 3
|