We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Why can't I find a job in deletepod and still need to create one? I think we can directly skip. Location of code is https://github.com/volcano-sh/volcano/tree/master/pkg/controllers/cache/cache.go
job, found := jc.jobs[key] if !found { job = &apis.JobInfo{ Pods: make(map[string]map[string]*v1.Pod), } jc.jobs[key] = job }
i think so
if job, found := jc.jobs[key]; found { if err := job.DeletePod(pod); err != nil { return err } if jobTerminated(job) { jc.deleteJob(job) } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Please describe your problem in detail
Why can't I find a job in deletepod and still need to create one? I think we can directly skip.
Location of code is https://github.com/volcano-sh/volcano/tree/master/pkg/controllers/cache/cache.go
Any other relevant information
i think so
The text was updated successfully, but these errors were encountered: