1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-10 01:46:55 +00:00
kyverno/examples/demo/qos/qos.yaml

27 lines
461 B
YAML
Raw Normal View History

2019-06-22 16:05:06 -07:00
apiVersion: apps/v1
kind: Deployment
metadata:
name: qos-demo
spec:
replicas: 1
selector:
matchLabels:
app: nginx
template:
metadata:
labels:
app: nginx
spec:
containers:
- name: nginx
image: nginx:latest
resources:
limits:
cpu: "50m"
- name: ghost
image: ghost:latest
resources:
limits:
cpu: "50m"
memory: "500Mi"