Skip to content

Commit c8fd881

Browse files
committed
doc: Add permissions to CR in the readme
1 parent 19cba57 commit c8fd881

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

README.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,3 +65,28 @@ In the developer perpective the Camel section is now shown:
6565
[![The Camel Plugin Home](screenshots/home.png)](screenshots/home.png)
6666

6767

68+
## User Configuration
69+
70+
To be able to see your Camel integrations in the Camel Dashboard you need for your user to have access to the Custom Resources created by the camel-dashboard-operator with the following permissions:
71+
72+
```yaml
73+
- apiGroups:
74+
- "camel.apache.org"
75+
resources:
76+
- apps
77+
verbs:
78+
- get
79+
- list
80+
- watch
81+
```
82+
83+
You can use the helm script installation with the your values to easily create `Role`/`RoleBinding` pairs:
84+
```yaml
85+
appsCamelRbac:
86+
- namespace: my-project
87+
subjects:
88+
- apiGroup: rbac.authorization.k8s.io
89+
kind: User
90+
name: developer
91+
```
92+

0 commit comments

Comments
 (0)