File tree Expand file tree Collapse file tree 4 files changed +13
-9
lines changed
manifests/opendatahub/base Expand file tree Collapse file tree 4 files changed +13
-9
lines changed Original file line number Diff line number Diff line change 1
1
apiVersion : rbac.authorization.k8s.io/v1
2
- kind : RoleBinding
2
+ kind : ClusterRoleBinding
3
3
metadata :
4
4
labels :
5
5
application-crd-id : data-science-pipelines
6
- name : ds-pipeline-persistenceagent-binding
6
+ name : ds-pipeline-persistenceagent-clusterrolebinding
7
7
roleRef :
8
8
apiGroup : rbac.authorization.k8s.io
9
- kind : Role
10
- name : ds-pipeline-persistenceagent-role
9
+ kind : ClusterRole
10
+ name : ds-pipeline-persistenceagent-clusterrole
11
11
subjects :
12
12
- kind : ServiceAccount
13
13
name : ds-pipeline-persistenceagent
Original file line number Diff line number Diff line change 1
1
apiVersion : rbac.authorization.k8s.io/v1
2
- kind : Role
2
+ kind : ClusterRole
3
3
metadata :
4
4
labels :
5
5
application-crd-id : data-science-pipelines
6
- name : ds-pipeline-persistenceagent-role
6
+ name : ds-pipeline-persistenceagent-clusterrole
7
7
rules :
8
8
- apiGroups :
9
9
- argoproj.io
Original file line number Diff line number Diff line change 30
30
command :
31
31
- persistence_agent
32
32
- " --logtostderr=true"
33
- - " --namespace=$(namespace)"
34
33
- " --ttlSecondsAfterWorkflowFinish=86400"
35
34
- " --numWorker=2"
36
35
- " --mlPipelineAPIServerName=ds-pipeline"
Original file line number Diff line number Diff line change @@ -15,19 +15,23 @@ resources:
15
15
- ./deployments/ds-pipeline.yaml
16
16
17
17
# Rolebindings
18
- - ./rolebindings/ds-pipeline-persistenceagent-binding.yaml
19
18
- ./rolebindings/ds-pipeline-scheduledworkflow-binding.yaml
20
19
- ./rolebindings/ds-pipeline-viewer-crd-binding.yaml
21
20
- ./rolebindings/ds-pipeline.yaml
22
21
- ./rolebindings/pipeline-runner-binding.yaml
23
22
24
23
# Roles
25
- - ./roles/ds-pipeline-persistenceagent-role.yaml
26
24
- ./roles/ds-pipeline-scheduledworkflow-role.yaml
27
25
- ./roles/ds-pipeline-viewer-controller-role.yaml
28
26
- ./roles/ds-pipeline.yaml
29
27
- ./roles/pipeline-runner.yaml
30
28
29
+ # ClusterRoleBindings
30
+ - ./clusterrolebindings/ds-pipeline-persistenceagent-clusterrolebinding.yaml
31
+
32
+ # ClusterRoles
33
+ - ./clusterroles/ds-pipeline-persistenceagent-clusterrole.yaml
34
+
31
35
# ServiceAccounts
32
36
- ./serviceaccounts/ds-pipeline-container-builder.yaml
33
37
- ./serviceaccounts/ds-pipeline-persistenceagent.yaml
88
92
apiVersion : v1
89
93
fieldref :
90
94
fieldpath : data.ds_pipelines_ui_configuration
95
+
91
96
configurations :
92
97
- params.yaml
93
98
You can’t perform that action at this time.
0 commit comments