-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
uprade supported kueue version to v0.9.1
Signed-off-by: Qing Hao <[email protected]>
- Loading branch information
1 parent
a967216
commit 37b6a91
Showing
11 changed files
with
197 additions
and
284 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
144 changes: 144 additions & 0 deletions
144
solutions/kueue-admission-check/env/clusterpermission.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,144 @@ | ||
# the permission is copied from https://kueue.sigs.k8s.io/docs/tasks/manage/setup_multikueue/ | ||
apiVersion: rbac.open-cluster-management.io/v1alpha1 | ||
kind: ClusterPermission | ||
metadata: | ||
name: kueue-admin-CLUSTER_NAME | ||
namespace: CLUSTER_NAME | ||
spec: | ||
clusterRole: | ||
rules: | ||
- apiGroups: | ||
- batch | ||
resources: | ||
- jobs | ||
verbs: | ||
- create | ||
- delete | ||
- get | ||
- list | ||
- watch | ||
- apiGroups: | ||
- batch | ||
resources: | ||
- jobs/status | ||
verbs: | ||
- get | ||
- apiGroups: | ||
- jobset.x-k8s.io | ||
resources: | ||
- jobsets | ||
verbs: | ||
- create | ||
- delete | ||
- get | ||
- list | ||
- watch | ||
- apiGroups: | ||
- jobset.x-k8s.io | ||
resources: | ||
- jobsets/status | ||
verbs: | ||
- get | ||
- apiGroups: | ||
- kueue.x-k8s.io | ||
resources: | ||
- workloads | ||
verbs: | ||
- create | ||
- delete | ||
- get | ||
- list | ||
- watch | ||
- apiGroups: | ||
- kueue.x-k8s.io | ||
resources: | ||
- workloads/status | ||
verbs: | ||
- get | ||
- patch | ||
- update | ||
- apiGroups: | ||
- kubeflow.org | ||
resources: | ||
- tfjobs | ||
verbs: | ||
- create | ||
- delete | ||
- get | ||
- list | ||
- watch | ||
- apiGroups: | ||
- kubeflow.org | ||
resources: | ||
- tfjobs/status | ||
verbs: | ||
- get | ||
- apiGroups: | ||
- kubeflow.org | ||
resources: | ||
- paddlejobs | ||
verbs: | ||
- create | ||
- delete | ||
- get | ||
- list | ||
- watch | ||
- apiGroups: | ||
- kubeflow.org | ||
resources: | ||
- paddlejobs/status | ||
verbs: | ||
- get | ||
- apiGroups: | ||
- kubeflow.org | ||
resources: | ||
- pytorchjobs | ||
verbs: | ||
- create | ||
- delete | ||
- get | ||
- list | ||
- watch | ||
- apiGroups: | ||
- kubeflow.org | ||
resources: | ||
- pytorchjobs/status | ||
verbs: | ||
- get | ||
- apiGroups: | ||
- kubeflow.org | ||
resources: | ||
- xgboostjobs | ||
verbs: | ||
- create | ||
- delete | ||
- get | ||
- list | ||
- watch | ||
- apiGroups: | ||
- kubeflow.org | ||
resources: | ||
- xgboostjobs/status | ||
verbs: | ||
- get | ||
- apiGroups: | ||
- kubeflow.org | ||
resources: | ||
- mpijobs | ||
verbs: | ||
- create | ||
- delete | ||
- get | ||
- list | ||
- watch | ||
- apiGroups: | ||
- kubeflow.org | ||
resources: | ||
- mpijobs/status | ||
verbs: | ||
- get | ||
clusterRoleBinding: | ||
subject: | ||
kind: ServiceAccount | ||
name: kueue-admin-CLUSTER_NAME | ||
namespace: open-cluster-management-agent-addon |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
...ons/kueue-admission-check/env/msa-c2.yaml → solutions/kueue-admission-check/env/msa.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
apiVersion: authentication.open-cluster-management.io/v1beta1 | ||
kind: ManagedServiceAccount | ||
metadata: | ||
name: kueue-admin-cluster2 | ||
namespace: cluster2 | ||
name: kueue-admin-CLUSTER_NAME | ||
namespace: CLUSTER_NAME | ||
spec: | ||
rotation: {} |
Oops, something went wrong.