Skip to content
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

[YUNIKORN-2530] Remove node readiness attribute from SI #133

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion lib/go/common/constants.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

143 changes: 70 additions & 73 deletions lib/go/si/si.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions scheduler-interface-spec.md
Original file line number Diff line number Diff line change
Expand Up @@ -774,7 +774,6 @@ const (
AppTagNamespaceResourceGuaranteed = "namespace.resourceguaranteed"
AppTagNamespaceResourceMaxApps = "namespace.resourcemaxapps"
AppTagCreateForce = "application.create.force"
NodeReadyAttribute = "ready"
)
```

Expand Down Expand Up @@ -909,7 +908,6 @@ message EventRecord {
APP_RUNNABLE_QUOTA = 216; // Application is allowed to run based on user/group quota (after maxApplications limit hit)

NODE_DECOMISSION = 300; // Node removal
NODE_READY = 301; // Node ready state change
NODE_SCHEDULABLE = 302; // Node schedulable state change (cordon)
NODE_ALLOC = 303; // Allocation changed
NODE_CAPACITY = 304; // Capacity changed
Expand Down Expand Up @@ -937,7 +935,9 @@ message EventRecord {
UG_GROUP_RESOURCE = 604; // Resource usage updated for a group

reserved 205;
reserved 301;
reserved "APP_STARTING";
reserved "NODE_READY";
}

// the type of the object associated with the event
Expand Down
3 changes: 2 additions & 1 deletion si.proto
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,6 @@ message EventRecord {
APP_RUNNABLE_QUOTA = 216; // Application is allowed to run based on user/group quota (after maxApplications limit hit)

NODE_DECOMISSION = 300; // Node removal
NODE_READY = 301; // Node ready state change
NODE_SCHEDULABLE = 302; // Node schedulable state change (cordon)
NODE_ALLOC = 303; // Allocation changed
NODE_CAPACITY = 304; // Capacity changed
Expand Down Expand Up @@ -560,7 +559,9 @@ message EventRecord {
UG_GROUP_RESOURCE = 604; // Resource usage updated for a group

reserved 205;
reserved 301;
reserved "APP_STARTING";
reserved "NODE_READY";
}

// the type of the object associated with the event
Expand Down