-
Notifications
You must be signed in to change notification settings - Fork 47
New issue
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
support elastic jobset #529
Conversation
✅ Deploy Preview for kubernetes-sigs-jobset canceled.
|
7c3ca30
to
11f58b0
Compare
83d1f64
to
128d926
Compare
/assign @danielvegamyhre @ahg-g |
So the use case for this auto-provisioning adding new node pools, and relaxing this validation allows us to potentially autoscale the number of jobs in the replicatedJob to utilize the newly provisioned infrastructure? |
/lgtm Will leave approval for @ahg-g |
/hold |
PR needs rebase. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
@danielvegamyhre @googs1025 im on leave so im not going to be addressing these rebase for a little while. If you want this in, I would suggest maybe taking it up. |
128d926
to
8cb21bf
Compare
New changes are detected. LGTM label has been removed. |
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: kannon92 The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
8cb21bf
to
086a389
Compare
Fixes #463
Add elastic jobset support (downscale/upscaling replicas of a Replicated Job).
Before this change, we treated ReplicateJobs (in JobSet.Spec) as immutable. This relaxes that restriction.
I choose to validate that names cannot be changed and the job templates must not change during updates. I don't see a reason for names to change and we also don't allow order change of the replicated job list so we can detect differences easily.