23 lines
352 B
YAML
23 lines
352 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: web
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: web
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: web
|
|
spec:
|
|
containers:
|
|
- name: web
|
|
image: nginx
|
|
resources:
|
|
requests:
|
|
cpu: "100m"
|
|
limits:
|
|
cpu: "500m"
|