-
Notifications
You must be signed in to change notification settings - Fork 993
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
volcano-scheduler start failed #628
Comments
It seems that when Enqueue action executes, the /kind bug /area scheduler |
@hzxuzhonghu: The label(s) In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
/area scheduling |
@jianxingzhe , what kind of workload did you submit to volcano? could you share the yaml file? |
@hzxuzhonghu , in |
Can you link the lines? |
BTW, i donot think we should leave a critical bug to 0.4, which is 3 months away. |
i submit nothing to volcano. when i deploy volcano in my cluster, the scheduler panic. |
What's this <nzk/nzkcluster>? |
this is my crd resource, which has already in my cluster befor deploy volcano.
|
I thought |
try this |
I'm sure there is not a pod with scheduler name set to volcano. when i delete the ns
|
in another cluster, i have the same error. i add some logs in volcano scheduler: for _, value := range sc.Jobs {
// If no scheduling spec, does not handle it.
if value.PodGroup == nil && value.PDB == nil {
klog.V(4).Infof("The scheduling spec of Job <%v:%s/%s> is nil, ignore it.",
value.UID, value.Namespace, value.Name)
continue
}
if _, found := snapshot.Queues[value.Queue]; !found {
klog.V(3).Infof("The Queue <%v> of Job <%v/%v> does not exist, ignore it.",
value.Queue, value.Namespace, value.Name)
continue
}
klog.V(3).Infof("add Job: %v", value) // print the joninfo
wg.Add(1)
go cloneJob(value)
} i found the volcano scheduler add some jobs automatically,and theses jobs can not be found in my cluster. i cannot find the code where these jobs were added to the scheduler cache . @hzxuzhonghu
|
How did you deploy volcano? And which version do you use? |
@hzxuzhonghu i deploy volcano with this yaml file |
On your own k8s? |
yes, on our dev k8s cluster
|
I am curious what's these jobs are |
Is this a BUG REPORT or FEATURE REQUEST?:
What happened:
when deploy volcano witeh the installer/volcano-deployment.yaml, the vocano-shceduler start failed, the logs as follows:
root@paas-operator-0:~# kubectl get Job -n nzk
No resources found.
What you expected to happen:
How to reproduce it (as minimally and precisely as possible):
Anything else we need to know?:
Environment:
volcanosh/vc-scheduler:latest
kubectl version
):uname -a
):The text was updated successfully, but these errors were encountered: