Skip to content
Merged
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
2 changes: 1 addition & 1 deletion charts/opentelemetry-ebpf-instrumentation/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
apiVersion: v2
name: opentelemetry-ebpf-instrumentation
version: 0.7.0
version: 0.7.1
description: OpenTelemetry eBPF instrumentation Helm chart for Kubernetes
type: application
home: https://opentelemetry.io/
Expand Down
42 changes: 42 additions & 0 deletions charts/opentelemetry-ebpf-instrumentation/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -835,6 +835,48 @@
"OnDelete"
],
"example": "RollingUpdate"
},
"rollingUpdate": {
"type": "object",
"title": "Rolling Update Configuration",
"description": "Rolling update configuration for the DaemonSet. Only applies when type is 'RollingUpdate'.",
"additionalProperties": false,
"properties": {
"maxUnavailable": {
"oneOf": [
{
"type": "integer",
"title": "Max Unavailable - Integer",
"description": "The maximum number of DaemonSet pods that can be unavailable during the update as an absolute number",
"minimum": 0
},
{
"type": "string",
"title": "Max Unavailable - Percentage",
"description": "The maximum number of DaemonSet pods that can be unavailable during the update as a percentage (e.g., '10%')",
"pattern": "^[0-9]+%$"
}
],
"example": 1
},
"maxSurge": {
"oneOf": [
{
"type": "integer",
"title": "Max Surge - Integer",
"description": "The maximum number of DaemonSet pods that can be created over the desired number during the update as an absolute number",
"minimum": 0
},
{
"type": "string",
"title": "Max Surge - Percentage",
"description": "The maximum number of DaemonSet pods that can be created over the desired number during the update as a percentage (e.g., '10%')",
"pattern": "^[0-9]+%$"
}
],
"example": "10%"
}
}
}
}
},
Expand Down
Loading