generated from terraform-ibm-modules/terraform-ibm-module-template
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Add priorityClass and maxUnavailable to sysdig-agent helm chart (#…
…398) * feat: Add priorityClass to sysdig helm chart * feat: Configure maxUnavailable to 25% for sysdig-agent * Change sysdig priority value to 999999 --------- Co-authored-by: Daniel Butler <[email protected]>
- Loading branch information
1 parent
07b6db3
commit 88a1002
Showing
2 changed files
with
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
apiVersion: scheduling.k8s.io/v1 | ||
kind: PriorityClass | ||
metadata: | ||
name: "{{ .Values.metadata.name }}-ds-priority" | ||
namespace: {{ .Release.Namespace }} | ||
value: 999999 | ||
preemptionPolicy: PreemptLowerPriority | ||
globalDefault: false | ||
description: "Sysdig Agent" |