問題タブ [kubernetes-jobs]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票する
6 に答える
24542 参照

kubernetes - コンテナーを Kubernetes ジョブとして順次実行する方法は?

従来のジョブ スケジューラを Kubernetes ジョブに置き換えようとしており、シーケンシャル ジョブを Kubernetes ジョブとして記述する方法を考えています。

まず、実行する次のスクリプトをjob1記述job2した順序で記述しましたが、期待どおりに動作しませんでした。

上記のジョブは並行して実行job1されているようです。書かれた順序で実行job2する良い方法はありますか?job1job2

添付。

最近、https://github.com/argoproj/argoが私のユースケースに非常に適していることがわかりました。

0 投票する
9 に答える
119742 参照

kubernetes - How to automatically remove completed Kubernetes Jobs created by a CronJob?

Is there a way to automatically remove completed Jobs besides making a CronJob to clean up completed Jobs?

The K8s Job Documentation states that the intended behavior of completed Jobs is for them to remain in a completed state until manually deleted. Because I am running thousands of Jobs a day via CronJobs and I don't want to keep completed Jobs around.