-
Notifications
You must be signed in to change notification settings - Fork 40.3k
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
Create pkg/scheduling/apis/v1beta1 and move priorityClass to beta #63100
Create pkg/scheduling/apis/v1beta1 and move priorityClass to beta #63100
Conversation
302c5a1
to
30f7f25
Compare
@@ -66,6 +66,7 @@ pkg/apis/rbac/v1beta1 | |||
pkg/apis/rbac/validation | |||
pkg/apis/scheduling | |||
pkg/apis/scheduling/v1alpha1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why are you keeping v1alpha1?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think as I understand, it might be needed, if some apis are alpha and some are beta?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That is correct. I think we don't have a beta group for scheduling yet. So, we need it say if new api like priorityClass comes up in future.
@@ -37,12 +38,13 @@ func Install(groupFactoryRegistry announced.APIGroupFactoryRegistry, registry *r | |||
if err := announced.NewGroupMetaFactory( | |||
&announced.GroupMetaFactoryArgs{ | |||
GroupName: scheduling.GroupName, | |||
VersionPreferenceOrder: []string{v1alpha1.SchemeGroupVersion.Version}, | |||
VersionPreferenceOrder: []string{v1beta1.SchemeGroupVersion.Version, v1alpha1.SchemeGroupVersion.Version}, | |||
RootScopedKinds: sets.NewString("PriorityClass"), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here it says that rootscopekind is PriorityClass? So wondering why to keep both v1alpha1 and v1beta1 if its only for priorityclass?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am not a 100% sure. I believe it is because of backward compatibility. I have looked at existing API which have graduated to beta and all of them have this pattern of beta and alpha.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In my understanding, there is no guarantee provided by Kubernetes of backward compatibility for alpha apis. See the alpha api section: https://kubernetes.io/docs/concepts/overview/kubernetes-api/
30f7f25
to
255bfc7
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks generally good, but I am not so sure about keeping v1alpha1. API folks can help us review that part.
Please make sure verifications and tests pass.
538bd90
to
2542a83
Compare
You mean priorityClass in v1alpha1 or remove v1alpha1 in general?
Yes. There was an issue with go 1.9 version on my machine for gofmt. Changing to 1.10.1 solved it. |
@kubernetes/sig-scheduling-pr-reviews @kubernetes/api-reviewers |
Removing priorityClass from v1alpha1 and since it is the only item there, maybe removing v1alpha1 as well. Basically, I would like to know what the recommended workflow is when we graduate an API to beta. |
AFAIK, we should remove |
|
@bsalamat can you check why it was removed from 1.11 milestone? |
8cb6702
to
3099271
Compare
/retest |
3099271
to
47e44fa
Compare
47e44fa
to
1f530ec
Compare
/retest |
1f530ec
to
aab8378
Compare
/test pull-kubernetes-e2e-kops-aws |
aab8378
to
99a3484
Compare
pkg/features/kube_features.go
Outdated
@@ -302,7 +302,7 @@ var defaultKubernetesFeatureGates = map[utilfeature.Feature]utilfeature.FeatureS | |||
HugePages: {Default: true, PreRelease: utilfeature.Beta}, | |||
DebugContainers: {Default: false, PreRelease: utilfeature.Alpha}, | |||
PodShareProcessNamespace: {Default: false, PreRelease: utilfeature.Alpha}, | |||
PodPriority: {Default: false, PreRelease: utilfeature.Alpha}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@aveshagarwal are the quota controls in place to allow this to be enabled by default? (flipping the feature gate isn't required to add v1beta1 priority classes)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes, that. until that is available, we should not enable the feature by default.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, I will make this alpha so that this PR can go ahead.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done. PTAL
/lgtm |
99a3484
to
f20bd00
Compare
/lgtm |
/retest |
@liggitt Thanks for the review. /assign @smarterclayton |
[MILESTONENOTIFIER] Milestone Pull Request: Up-to-date for process @liggitt @ravisantoshgudimetla @smarterclayton Pull Request Labels
|
/approve based on api approver comments and sig approval |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: liggitt, ravisantoshgudimetla, smarterclayton The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Thanks @smarterclayton |
Automatic merge from submit-queue (batch tested with PRs 55511, 63372, 63400, 63100, 63769). If you want to cherry-pick this change to another branch, please follow the instructions here. |
What this PR does / why we need it:
This is for creating pkg/apis/scheduling/v1beta1 so that priorityClasses could be moved to beta.
Which issue(s) this PR fixes (optional, in
fixes #<issue number>(, fixes #<issue_number>, ...)
format, will close the issue(s) when PR gets merged):Part of #57471
Special notes for your reviewer:
/cc @bsalamat @aveshagarwal
Release note: