Skip to content
Merged
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
7 changes: 4 additions & 3 deletions config/rbac/evalhub/evalhub_mlflow_jobs_role.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
---
# ClusterRole for MLflow kubernetes-auth access (jobs only)
# Jobs only need to create experiments and log metrics — they should not
# update or delete existing experiments. The proxy SA retains full CRUD
# Jobs need "update" because MLflow's kubernetes-workspace-provider maps
# CreateRun, LogMetric and LogBatch to the "update" verb on experiments.
# Jobs should not delete experiments. The proxy SA retains full CRUD
# via the broader evalhub-mlflow-access ClusterRole.
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
Expand All @@ -14,4 +15,4 @@ rules:
- apiGroups: ["mlflow.kubeflow.org"]
resources:
- experiments
verbs: ["create", "get", "list"]
verbs: ["create", "get", "list", "update"]
Loading