Skip to content

Commit cbc201e

Browse files
authored
Merge pull request #63 from intel/release-26q1-1
Release 26q1-1
2 parents 320ecda + 3912173 commit cbc201e

35 files changed

Lines changed: 363 additions & 139 deletions

File tree

charts/intel-gaudi-resource-driver/Chart.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,20 @@ name: intel-gaudi-resource-driver-chart
33
description: A Helm chart for a Dynamic Resource Allocation (DRA) Intel Gaudi Resource Driver
44

55
type: application
6-
version: 0.7.0
7-
appVersion: v0.7.0
6+
version: 0.7.1
7+
appVersion: v0.7.1
88
home: https://github.com/intel/intel-resource-drivers-for-kubernetes/charts
99

1010
dependencies:
1111
- name: node-feature-discovery
1212
alias: nfd
13-
version: "0.17.4"
13+
version: "0.18.3"
1414
condition: nfd.enabled
1515
repository: https://kubernetes-sigs.github.io/node-feature-discovery/charts
1616

1717
annotations:
1818
org.opencontainers.image.url: "https://github.com/intel/intel-resource-drivers-for-kubernetes"
1919
org.opencontainers.image.source: "https://github.com/intel/intel-resource-drivers-for-kubernetes"
20-
org.opencontainers.image.version: "0.7.0"
20+
org.opencontainers.image.version: "0.7.1"
2121
org.opencontainers.image.title: "Intel Gaudi Resource Driver"
2222
org.opencontainers.image.description: "This chart installs the Intel Gaudi resource driver on Kubernetes."

charts/intel-gaudi-resource-driver/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ You may also run `helm show values` on this chart's dependencies for additional
5151
| image.repository | string | `intel` |
5252
| image.name | string | `"intel-gaudi-resource-driver"` |
5353
| image.pullPolicy | string | `"IfNotPresent"` |
54-
| image.tag | string | `"v0.7.0"` |
54+
| image.tag | string | `"v0.7.1"` |
5555

5656
> [!Note]
5757
> If you change the image tag to be used in Helm chart deployment, ensure that the version of the container image is consistent with deployment YAMLs - they might change between releases.

charts/intel-gaudi-resource-driver/templates/resource-driver.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ spec:
3838
mountPath: /var/lib/kubelet/plugins
3939
- name: cdi
4040
mountPath: /etc/cdi
41+
- name: etc-habanalabs
42+
mountPath: /etc/habanalabs
4143
- name: varruncdi
4244
mountPath: /var/run/cdi
4345
# when using fake sysfs - mount at the same place as on host
@@ -58,6 +60,9 @@ spec:
5860
- name: plugins
5961
hostPath:
6062
path: /var/lib/kubelet/plugins
63+
- name: etc-habanalabs
64+
hostPath:
65+
path: /etc/habanalabs
6166
- name: cdi
6267
hostPath:
6368
path: {{ .Values.cdi.staticPath }}

charts/intel-gaudi-resource-driver/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ image:
1313
repository: ghcr.io/intel/intel-resource-drivers-for-kubernetes
1414
name: intel-gaudi-resource-driver
1515
pullPolicy: IfNotPresent
16-
tag: "v0.7.0"
16+
tag: "v0.7.1"
1717

1818
serviceAccount:
1919
create: true

charts/intel-gpu-resource-driver/Chart.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,20 @@ name: intel-gpu-resource-driver-chart
33
description: A Helm chart for a Dynamic Resource Allocation (DRA) Intel GPU Resource Driver
44

55
type: application
6-
version: 0.10.0
7-
appVersion: v0.10.0
6+
version: 0.10.1
7+
appVersion: v0.10.1
88
home: https://github.com/intel/intel-resource-drivers-for-kubernetes/charts
99

1010
dependencies:
1111
- name: node-feature-discovery
1212
alias: nfd
13-
version: "0.17.4"
13+
version: "0.18.3"
1414
condition: nfd.enabled
1515
repository: https://kubernetes-sigs.github.io/node-feature-discovery/charts
1616

1717
annotations:
1818
org.opencontainers.image.url: "https://github.com/intel/intel-resource-drivers-for-kubernetes"
1919
org.opencontainers.image.source: "https://github.com/intel/intel-resource-drivers-for-kubernetes"
20-
org.opencontainers.image.version: "0.10.0"
20+
org.opencontainers.image.version: "0.10.1"
2121
org.opencontainers.image.title: "Intel GPU Resource Driver"
2222
org.opencontainers.image.description: "This chart installs the Intel GPU resource driver on Kubernetes."

charts/intel-gpu-resource-driver/README.md

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,11 @@ helm install \
1616
intel-gpu-resource-driver oci://ghcr.io/intel/intel-resource-drivers-for-kubernetes/intel-gpu-resource-driver-chart
1717
```
1818

19+
> [!NOTE]
20+
> Starting v0.10.0, [XPUM Daemon](https://github.com/intel/xpumanager/tree/v2.x/xpumd) is used for health monitoring and devices' details discovery.
21+
> It is not currently part of this chart, and needs to be installed separately.
22+
23+
1924
> [!NOTE]
2025
> For Kubernetes clusters using [Pod Security Standards](https://kubernetes.io/docs/concepts/security/pod-security-standards/),
2126
> pre-create the namespace with the respective label allowing to use HostPath Volumes.
@@ -46,12 +51,14 @@ helm show values oci://ghcr.io/intel/intel-resource-drivers-for-kubernetes/intel
4651

4752
You may also run `helm show values` on this chart's dependencies for additional options.
4853

49-
| Key | Type | Default |
50-
|-----|------|---------|
51-
| image.repository | string | `intel` |
52-
| image.name | string | `"intel-gpu-resource-driver"` |
53-
| image.pullPolicy | string | `"IfNotPresent"` |
54-
| image.tag | string | `"v0.10.0"` |
54+
| Key | Type | Default | Comment |
55+
|-----|------|---------|---------|
56+
| image.repository | string | `intel` ||
57+
| image.name | string | `"intel-gpu-resource-driver"` ||
58+
| image.pullPolicy | string | `"IfNotPresent"` ||
59+
| image.tag | string | `"v0.10.1"` ||
60+
| kubeletPlugin.healthMonitoring.enabled | bool | true | Enable (default) GPU details discovery method. Also, [health monitoring](../../doc/gpu/USAGE.md#health-monitoring-support). Requires [xpumd](https://github.com/intel/xpumanager/tree/v2.x/xpumd) |
61+
| kubeletPlugin.privileged | bool | false | Enable alternative method for discovering GPU details when health monitoring is disabled |
5562

5663
## Deploying to RedHat OpenShift Container Platform
5764

charts/intel-gpu-resource-driver/templates/node-feature-rules.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ spec:
2121
- matchFeatures:
2222
- feature: kernel.enabledmodule
2323
matchExpressions:
24-
i915: {op: Exists}
24+
xe: {op: Exists}
2525
---
2626
apiVersion: nfd.k8s-sigs.io/v1alpha1
2727
kind: NodeFeatureRule

charts/intel-gpu-resource-driver/templates/resource-driver.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,6 @@ spec:
5858
fieldPath: metadata.namespace
5959
- name: SYSFS_ROOT
6060
value: "/sysfs"
61-
- name: ZES_ENABLE_SYSMAN
62-
value: "1"
6361
volumeMounts:
6462
- name: plugins-registry
6563
mountPath: /var/lib/kubelet/plugins_registry

charts/intel-gpu-resource-driver/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ image:
1313
repository: ghcr.io/intel/intel-resource-drivers-for-kubernetes
1414
name: intel-gpu-resource-driver
1515
pullPolicy: IfNotPresent
16-
tag: "v0.10.0"
16+
tag: "v0.10.1"
1717

1818
serviceAccount:
1919
create: true

charts/intel-qat-resource-driver/Chart.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,20 @@ name: intel-qat-resource-driver-chart
33
description: A Helm chart for a Dynamic Resource Allocation (DRA) Intel QAT Resource Driver
44

55
type: application
6-
version: 0.4.2
7-
appVersion: v0.4.2
6+
version: 0.4.3
7+
appVersion: v0.4.3
88
home: https://github.com/intel/intel-resource-drivers-for-kubernetes/charts
99

1010
dependencies:
1111
- name: node-feature-discovery
1212
alias: nfd
13-
version: "0.17.4"
13+
version: "0.18.3"
1414
condition: nfd.enabled
1515
repository: https://kubernetes-sigs.github.io/node-feature-discovery/charts
1616

1717
annotations:
1818
org.opencontainers.image.url: "https://github.com/intel/intel-resource-drivers-for-kubernetes"
1919
org.opencontainers.image.source: "https://github.com/intel/intel-resource-drivers-for-kubernetes"
20-
org.opencontainers.image.version: "0.4.2"
20+
org.opencontainers.image.version: "0.4.3"
2121
org.opencontainers.image.title: "Intel QAT Resource Driver"
2222
org.opencontainers.image.description: "This chart installs the Intel QAT resource driver on Kubernetes."

0 commit comments

Comments
 (0)