mirror of
https://github.com/jominjun94/k8s-cpu-limit-check-operator.git
synced 2026-01-29 05:35:35 +00:00
29 lines
470 B
YAML
29 lines
470 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: cpu-stress
|
|
namespace: default
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: stress
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: stress
|
|
spec:
|
|
containers:
|
|
- name: stress
|
|
image: busybox
|
|
command:
|
|
- sh
|
|
- -c
|
|
- "while true; do :; done"
|
|
resources:
|
|
requests:
|
|
cpu: "100m"
|
|
limits:
|
|
cpu: "100m"
|
|
|