-
Notifications
You must be signed in to change notification settings - Fork 4
feat: Add support for priorityClass and make updateStrategy configurable #189
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
Changes from 1 commit
dc12a89
9bfccbf
0c2e587
3a28c8b
5acdf22
14b7f0d
4306a10
930aba1
c1e22ad
eb4ce7a
a7555a0
380282c
362eaef
7077b45
f20f2ca
c6e852a
37836e6
6c56301
2c8e81e
853991a
466a66e
67c5d1b
07ca7ca
bea66d3
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -246,6 +246,37 @@ variable "deployment_tag" { | |
| default = "terraform" | ||
| } | ||
|
|
||
| variable "max_unavailable" { | ||
| type = string | ||
| description = "Maximum number of pods that can be unavailable during a DaemonSet rolling update. Accepts absolute number or percentage (e.g., '1' or '10%')." | ||
| default = "1" | ||
| } | ||
|
|
||
| variable "max_surge" { | ||
| type = string | ||
| description = "Maximum number of nodes that can have an extra DaemonSet pod during a rolling update. Accepts absolute number or percentage (e.g., '1' or '10%')." | ||
| default = null | ||
ocofaigh marked this conversation as resolved.
Show resolved
Hide resolved
ocofaigh marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| } | ||
|
|
||
|
|
||
| variable "create_priority_class" { | ||
|
||
| type = bool | ||
| description = "Specify whether or not to create a priority class for the agent daemonset." | ||
| default = true | ||
|
||
| } | ||
Aashiq-J marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| variable "priority_class_name" { | ||
| type = string | ||
| description = "Sets the priority class name for the agent daemonset." | ||
| default = "sysdig-daemonset-priority" | ||
| } | ||
|
|
||
| variable "priority_class_value" { | ||
| type = number | ||
| description = "Sets the priority class value for the agent daemonset." | ||
| default = 10 | ||
| } | ||
|
|
||
| ############################################################################## | ||
| # Metrics related variables | ||
| ############################################################################## | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.