問題タブ [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.
kubernetes - コンテナーを Kubernetes ジョブとして順次実行する方法は?
従来のジョブ スケジューラを Kubernetes ジョブに置き換えようとしており、シーケンシャル ジョブを Kubernetes ジョブとして記述する方法を考えています。
まず、実行する次のスクリプトをjob1
記述job2
した順序で記述しましたが、期待どおりに動作しませんでした。
上記のジョブは並行して実行job1
されているようです。書かれた順序で実行job2
する良い方法はありますか?job1
job2
添付。
最近、https://github.com/argoproj/argoが私のユースケースに非常に適していることがわかりました。
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.