forked from jaegertracing/jaeger-operator
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add PriorityClass for AllInOne strategy (jaegertracing#2218)
* add priorityclass for allinone Signed-off-by: Zinnia Gibson <[email protected]> * add example Signed-off-by: Zinnia Gibson <[email protected]> * update all in one deployment Signed-off-by: Zinnia Gibson <[email protected]> * added deployment test Signed-off-by: Zinnia Gibson <[email protected]> * add test Signed-off-by: Zinnia Gibson <[email protected]> * updates after running generate Signed-off-by: Zinnia Gibson <[email protected]> --------- Signed-off-by: Zinnia Gibson <[email protected]> Signed-off-by: Israel Blancas <[email protected]>
- Loading branch information
Showing
7 changed files
with
46 additions
and
0 deletions.
There are no files selected for viewing
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
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
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
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
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,17 @@ | ||
apiVersion: scheduling.k8s.io/v1 | ||
kind: PriorityClass | ||
metadata: | ||
name: high-priority # priorityClassName here | ||
value: 1000000 | ||
globalDefault: false | ||
description: "This priority class should be used for XYZ service pods only." | ||
--- | ||
apiVersion: jaegertracing.io/v1 | ||
kind: "Jaeger" | ||
metadata: | ||
name: "my-jaeger" | ||
spec: | ||
strategy: allInOne | ||
allInOne: | ||
image: jaegertracing/all-in-one:1.30.0 | ||
priorityClassName: high-priority # priorityClassName here |
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
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