Questions tagged [k8s-cronjobber]

Cronjobber is the cronjob controller from Kubernetes patched with time zone support.

GitHub Repo

21 questions
0
votes
1 answer

Kubernetes pod marked as OOMKilled

Kubernetes pod getting terminated and marked as OOMKilled. Below is my cronjob yaml file: kind: CronJob metadata: name: test-cron spec: schedule: "30 2 1 * *" concurrencyPolicy: Forbid jobTemplate: spec: backoffLimit: 1 template: …
Nishant Middha
  • 302
  • 1
  • 9
0
votes
0 answers

Kubebuilder Kustomize Shell

Using the Kubebuilder initializer and I don't know to get the Kustomize shell. Whenever I try to install my operator onto minikube I get the error below: go: added sigs.k8s.io/kustomize/kyaml v0.9.4 go: added sigs.k8s.io/structured-merge-diff/v3…
0
votes
1 answer

helm cronjob multiple containers

I need to run multiple containers in one cronjob execution. Currently I have the following cronjob.yaml template: jobTemplate: spec: template: metadata: labels: app: {{ .Release.Name }} cron: {{ .Values.filesjob.jobName…
Elias Ghali
  • 823
  • 1
  • 13
  • 29
0
votes
1 answer

How to assign a public ip to a pod on dedicated servers

I have applications needs to give each pod a public ip and expose ports on this public ip. I am trying not to use virtual machines. matellb has similar feature. But, it binds a address to a service not pod. And, it wastes a lot of bandwidth.
Lod
  • 1
  • 2
0
votes
0 answers

How to create volume-snapshots from an event (resource modification or deletion) or CronJob?

I searched the Volume-snapshots documentation for how I can schedule or listen to an event (resource modification or deletion) to provision the snapshot and I didn't find it. Is it possible to implement this similar schedule using Volume-snapshots?
0
votes
1 answer

Is there a way to get information about kubernetes cronjob timetable?

I'd like to get information about k8s cronjob time. There are so many jobs in my k8s program. So It's hard to count what time there are focused on. I want to distribute my jobs evenly. Is there are way to count cronjob time or sort by time?
SungsooKim
  • 3
  • 1
  • 3
1
2