19 lines
362 B
YAML
19 lines
362 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: high-priority
|
|
spec:
|
|
containers:
|
|
- name: high-priority
|
|
image: ubuntu
|
|
command: ["/bin/sh"]
|
|
args: ["-c", "while true; do echo hello; sleep 10;done"]
|
|
resources:
|
|
requests:
|
|
memory: "10Gi"
|
|
cpu: "500m"
|
|
limits:
|
|
memory: "10Gi"
|
|
cpu: "500m"
|
|
priorityClassName: high
|