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-1887] SI: Add tag to allow forcible app creation #99

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: 1 addition & 0 deletions lib/go/common/constants.go

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

3 changes: 1 addition & 2 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 @@ -255,8 +255,7 @@ message AllocationRequest {
// ID of RM, this will be used to identify which RM of the request comes from.
string rmID = 3;

// Register new allocations or replace of existing allocations (if allocationID is same).
// The ask must already exist, or be specified in the asks parameter of this request.
// Existing allocations to be added.
repeated Allocation allocations = 4;
}

Expand Down Expand Up @@ -745,6 +744,7 @@ const (
AppTagNamespaceResourceQuota = "namespace.resourcequota"
AppTagNamespaceResourceGuaranteed = "namespace.resourceguaranteed"
AppTagStateAwareDisable = "application.stateaware.disable"
AppTagCreateForce = "application.create.force"
NodeReadyAttribute = "ready"
)
```
Expand Down
3 changes: 1 addition & 2 deletions si.proto
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,7 @@ message AllocationRequest {
// ID of RM, this will be used to identify which RM of the request comes from.
string rmID = 3;

// Register new allocations or replace of existing allocations (if allocationID is same).
// The ask must already exist, or be specified in the asks parameter of this request.
// Existing allocations to be added.
repeated Allocation allocations = 4;
}

Expand Down