Questions tagged [kubernetes-jobs]

139 questions
0
votes
1 answer

Have kube jobs start on waiting pods

I am working on a scenario where I want to be able to maintain some X number of pods in waiting (and managed by kube) and then upon user request (via some external system) have a kube job start on one of those waiting pods. So now the waiting pods…
Mayank
  • 21
  • 2
0
votes
1 answer

Kubernetes number of Pods according to tasks

I have a certain processing task that I want to solve with kubernetes. The basic concept is that there is a certain number of items in a work queue that I want to process. Items can be added to the queue and are deleted as soon as a pod finished…
-1
votes
2 answers

In kubernetes how can I tail the logs of future Job pods?

I have a Job which creates a pod and I can tail its logs like this: kubectl logs job/migration --follow However, since it's a Job, the pod is expected to run, complete and then terminate. If I run the above command, I can see the logs for the last…
justin.m.chase
  • 13,061
  • 8
  • 52
  • 100
-1
votes
1 answer

Can Kubernetes Jobs helpful in executing time consuming micro-services in background?

In my web application, I have certain tasks like uploading files that consume a lot of time, So is it a better idea to run it as a Kubernetes job? I didn't find any suitable use-cases to execute a task like that I have my server running in…
UDIT JOSHI
  • 1,298
  • 12
  • 26
1 2 3
9
10