27 lines
543 B
YAML
27 lines
543 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: a1-pending-deploy
|
|
namespace: org1
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: pending-app
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: pending-app
|
|
spec:
|
|
nodeSelector:
|
|
nodegroup: warkj
|
|
containers:
|
|
- name: pending-container
|
|
image: busybox
|
|
command: ["sleep", "3600"]
|
|
resources:
|
|
requests:
|
|
memory: "50000Gi" # 과도한 리소스 요청으로 스케줄링 불가
|
|
cpu: "100000"
|
|
|