Skip to content

Commit

Permalink
update gpu-resource-driver chart to v0.6.0
Browse files Browse the repository at this point in the history
Signed-off-by: Oksana Baranova <oksana.baranova@intel.com>
  • Loading branch information
oxxenix committed Oct 17, 2024
1 parent faabcf5 commit b23e1e3
Show file tree
Hide file tree
Showing 13 changed files with 74 additions and 543 deletions.
4 changes: 2 additions & 2 deletions charts/intel-gpu-resource-driver/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ name: intel-gpu-resource-driver
description: A Helm chart for a Dynamic Resource Allocation (DRA) Intel GPU Resource Driver

type: application
version: 0.5.1
appVersion: "v0.5.1"
version: 0.6.0
appVersion: "v0.6.0"
8 changes: 2 additions & 6 deletions charts/intel-gpu-resource-driver/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ helm repo update
You can execute `helm search repo intel` command to see pulled charts [optional].

## Install Helm Chart
CRDs of the GPU driver are installed as part of the chart first.

```
helm install intel-gpu-resource-driver intel/intel-gpu-resource-driver
```
Expand Down Expand Up @@ -45,9 +43,7 @@ You may also run `helm show values` on this chart's dependencies for additional
| image.repository | string | `intel` |
| image.name | string | `"intel-gpu-resource-driver"` |
| image.pullPolicy | string | `"IfNotPresent"` |
| image.tag | string | `"v0.5.1"` |

If you change the image tag to be used in Helm chart deployment, ensure that the version of the container image is consistent with CRDs and deployment YAMLs - they might change between releases.
| image.tag | string | `"v0.6.0"` |

> [!Note]
> Helm does not support _upgrading_ (or deleting) CRDs to prevent data loss. Only installing CRDs is supported. Details: https://github.com/helm/community/blob/main/hips/hip-0011.md
> Helm does not support _upgrading_ (or deleting) CRDs to prevent data loss. Only installing CRDs is supported. Details: https://github.com/helm/community/blob/main/hips/hip-0011.md

This file was deleted.

This file was deleted.

This file was deleted.

14 changes: 7 additions & 7 deletions charts/intel-gpu-resource-driver/templates/clusterrole.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ metadata:
namespace: {{ include "intel-gpu-resource-driver.namespace" . }}
rules:
- apiGroups: [""]
resources: ["pods", "nodes", "events"]
verbs: ["get", "list", "create", "watch", "patch"]
resources: ["nodes"]
verbs: ["get"]
- apiGroups: ["resource.k8s.io"]
resources: ["resourceclaims", "resourceclasses", "podschedulings","resourceclaims/status", "podschedulings/status", "podschedulingcontexts", "podschedulingcontexts/status"]
verbs: ["get", "update", "list", "watch", "patch"]
- apiGroups: ["gpu.resource.intel.com"]
resources: ["*"]
verbs: ["*"]
resources: ["resourceslices"]
verbs: ["get", "list", "watch", "create", "update", "patch", "delete"]
- apiGroups: ["resource.k8s.io"]
resources: ["resourceclaims"]
verbs: ["get"]
Loading

0 comments on commit b23e1e3

Please sign in to comment.