Skip to content

Commit 110e39e

Browse files
authored
plugins: update to 0.36.0 (#90)
Signed-off-by: Tuomas Katila <tuomas.katila@intel.com>
1 parent 2f6c307 commit 110e39e

16 files changed

Lines changed: 33 additions & 21 deletions

File tree

charts/device-plugin-operator/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ apiVersion: v2
22
name: intel-device-plugins-operator
33
description: A Helm chart for Intel Device Plugins Operator for Kubernetes
44
type: application
5-
version: 0.35.0
6-
appVersion: "0.35.0"
5+
version: 0.36.0
6+
appVersion: "0.36.0"

charts/device-plugin-operator/crds/deviceplugin.intel.com_gpudeviceplugins.yaml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ spec:
8181
type: string
8282
enableMonitoring:
8383
description: |-
84-
EnableMonitoring enables the monitoring resource ('i915_monitoring')
85-
which gives access to all GPU devices on given node. Typically used with Intel XPU-Manager.
84+
EnableMonitoring enables the monitoring resource which gives access to all GPU devices
85+
on the given node. Typically used with Intel XPU-Manager. See also MonitoringMode.
8686
type: boolean
8787
image:
8888
description: Image is a container image with GPU device plugin executable.
@@ -95,6 +95,15 @@ spec:
9595
description: LogLevel sets the plugin's log level.
9696
minimum: 0
9797
type: integer
98+
monitoringMode:
99+
description: |-
100+
MonitoringMode sets how monitoring resources are exposed when EnableMonitoring is true.
101+
single (default): single GPU 'monitoring' resource for all Intel GPU kernel drivers.
102+
split: per-driver resources (i915_monitoring, xe_monitoring).
103+
enum:
104+
- split
105+
- single
106+
type: string
98107
nodeSelector:
99108
additionalProperties:
100109
type: string

charts/dlb-device-plugin/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ logLevel: 4
1313
nodeSelector:
1414
intel.feature.node.kubernetes.io/dlb: 'true'
1515

16-
tolerations:
16+
tolerations: []
1717

1818
nodeFeatureRule: true

charts/dsa-device-plugin/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ apiVersion: v2
22
name: intel-device-plugins-dsa
33
description: A Helm chart for Intel DSA Device Plugin
44
type: application
5-
version: 0.35.0
6-
appVersion: "0.35.0"
5+
version: 0.36.0
6+
appVersion: "0.36.0"

charts/dsa-device-plugin/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ logLevel: 4
1515
nodeSelector:
1616
intel.feature.node.kubernetes.io/dsa: 'true'
1717

18-
tolerations:
18+
tolerations: []
1919

2020
nodeFeatureRule: true

charts/gpu-device-plugin/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ apiVersion: v2
22
name: intel-device-plugins-gpu
33
description: A Helm chart for Intel GPU Device Plugin
44
type: application
5-
version: 0.35.0
6-
appVersion: "0.35.0"
5+
version: 0.36.0
6+
appVersion: "0.36.0"

charts/gpu-device-plugin/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,5 @@ You may also run `helm show values` on this chart's dependencies for additional
4444
| `allowIDs` | `` |
4545
| `denyIDs` | `` |
4646
| `bypathMode` | `single` |
47+
| `monitoringMode` | `single` |
4748
| `logLevel` | `2` |

charts/gpu-device-plugin/templates/gpu.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ spec:
2020
allowIDs: {{ .Values.allowIDs | quote }}
2121
denyIDs: {{ .Values.denyIDs | quote }}
2222
bypathMode: {{ .Values.bypathMode }}
23+
monitoringMode: {{ .Values.monitoringMode }}
2324

2425
nodeSelector: {{- .Values.nodeSelector | toYaml | nindent 4 }}
2526
tolerations: {{- .Values.tolerations | toYaml | nindent 4 }}

charts/gpu-device-plugin/values.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ allocationPolicy: "none"
1616
allowIDs: ""
1717
denyIDs: ""
1818
bypathMode: single
19+
monitoringMode: single
1920

2021
nodeSelector:
2122
intel.feature.node.kubernetes.io/gpu: 'true'

charts/iaa-device-plugin/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ apiVersion: v2
22
name: intel-device-plugins-iaa
33
description: A Helm chart for Intel IAA Device Plugin
44
type: application
5-
version: 0.35.0
6-
appVersion: "0.35.0"
5+
version: 0.36.0
6+
appVersion: "0.36.0"

0 commit comments

Comments
 (0)