This repository was archived by the owner on Apr 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #98 from shivramsrivastava/affinity_enhancement
Node Affinity and Node Anti-Affinity enhancement related changes.
- Loading branch information
Showing
41 changed files
with
2,740 additions
and
281 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
syntax = "proto3"; | ||
|
||
package firmament; | ||
|
||
import "node_affinity.proto"; | ||
import "pod_affinity.proto"; | ||
import "pod_anti_affinity.proto"; | ||
|
||
message Affinity { | ||
|
||
NodeAffinity node_affinity = 1; | ||
|
||
PodAffinity pod_affinity = 2; | ||
|
||
PodAntiAffinity pod_anti_affinity = 3; | ||
} | ||
|
||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.