generated from kubernetes/kubernetes-template-project
-
Notifications
You must be signed in to change notification settings - Fork 117
Open
Labels
kind/bugCategorizes issue or PR as related to a bug.Categorizes issue or PR as related to a bug.
Description
I install lws with parameter:
VERSION=v0.7.0
helm install lws https://github.com/kubernetes-sigs/lws/releases/download/$VERSION/lws-chart-$VERSION.tgz
--namespace lws-system
--create-namespace \
--set gangSchedulingManagement.schedulerProvider=volcano
--wait --timeout 300s
I create a lws.yaml but did not specify the scheduler as Volcano;
kind: LeaderWorkerSet
metadata:
name: leaderworkerset-multi-template
spec:
replicas: 1
leaderWorkerTemplate:
leaderTemplate:
spec:
containers:
- name: nginx2
image: nginxinc/nginx-unprivileged:1.27
resources:
limits:
cpu: "100m"
requests:
cpu: "50m"
ports:
- containerPort: 8080
size: 4
workerTemplate:
spec:
containers:
- name: nginx
image: nginxinc/nginx-unprivileged:1.27
resources:
limits:
cpu: "100m"
requests:
cpu: "50m"
ports:
- containerPort: 8080
LWS created a podgroup, but the status of the podgroup remains Inqueue; This means that it has never been scheduled by Volcano

Metadata
Metadata
Assignees
Labels
kind/bugCategorizes issue or PR as related to a bug.Categorizes issue or PR as related to a bug.