Skip to content
This repository was archived by the owner on Oct 15, 2025. It is now read-only.

Commit 538de67

Browse files
authored
fix: modelservice CR was wrong (#56)
Signed-off-by: Tomas Coufal <tcoufal@redhat.com>
1 parent da85f8e commit 538de67

3 files changed

Lines changed: 24 additions & 35 deletions

File tree

charts/llm-d/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v2
22
name: llm-d
33
type: application
4-
version: 0.5.0
4+
version: 0.5.1
55
appVersion: "0.0.1"
66
icon: data:null
77
description: A Helm chart for llm-d

charts/llm-d/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# llm-d Helm Chart for OpenShift
33

4-
![Version: 0.5.0](https://img.shields.io/badge/Version-0.5.0-informational?style=flat-square)
4+
![Version: 0.5.1](https://img.shields.io/badge/Version-0.5.1-informational?style=flat-square)
55
![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
66

77
A Helm chart for llm-d

charts/llm-d/templates/modelservice/clusterRoleManager.yaml

Lines changed: 22 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -48,53 +48,42 @@ rules:
4848
- watch
4949
- create
5050
- update
51-
# MSV2 HACK BEGIN ---------------
5251
- apiGroups:
53-
- "v1"
52+
- v1
5453
resources:
55-
- "secrets"
54+
- secrets
5655
verbs:
57-
- "get"
58-
- "list"
59-
- "watch"
60-
- apiGroups:
61-
- "inference.networking.x-k8s.io"
62-
resources:
63-
- "inferencepools"
64-
- "inferencemodels"
65-
verbs:
66-
- "get"
67-
- "watch"
68-
- "list"
56+
- get
57+
- list
58+
- watch
6959
- apiGroups:
7060
- ""
7161
resources:
72-
- "pods"
62+
- pods
7363
verbs:
74-
- "get"
75-
- "watch"
76-
- "list"
64+
- get
65+
- watch
66+
- list
7767
- apiGroups:
78-
- "discovery.k8s.io"
68+
- discovery.k8s.io
7969
resources:
80-
- "endpointslices"
70+
- endpointslices
8171
verbs:
82-
- "get"
83-
- "watch"
84-
- "list"
72+
- get
73+
- watch
74+
- list
8575
- apiGroups:
86-
- "authentication.k8s.io"
76+
- authentication.k8s.io
8777
resources:
88-
- "tokenreviews"
78+
- tokenreviews
8979
verbs:
90-
- "create"
80+
- create
9181
- apiGroups:
92-
- "authorization.k8s.io"
82+
- authorization.k8s.io
9383
resources:
94-
- "subjectaccessreviews"
84+
- subjectaccessreviews
9585
verbs:
96-
- "create"
97-
# MSV2 HACK END ---------------
86+
- create
9887
- apiGroups:
9988
- apps
10089
resources:
@@ -117,8 +106,8 @@ rules:
117106
- apiGroups:
118107
- inference.networking.x-k8s.io
119108
resources:
120-
- inferencemodel
121-
- inferencepool
109+
- inferencemodels
110+
- inferencepools
122111
verbs:
123112
- create
124113
- delete

0 commit comments

Comments
 (0)