We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Instructions how to install operator on OpenShift [1] are shown under cluster-admin role.
cluster-admin
As role, role-binding and crd are cluster scoped resources I would expect that only cluster-admin can specify that.
role
role-binding
crd
However I wouldt expect to have cluster-admin role to be able to deploy application using operator with oc apply -f deploy/crds/quickstart-cr.yaml
oc apply -f deploy/crds/quickstart-cr.yaml
To be able to run this as developer user have to be granted (by cluster-admin) these permission:
developer
oc create role wildfly-server --verb=* --resource=wildflyservers.wildfly.org -n <namespace> oc adm policy add-role-to-user wildfly-server developer --role-namespace=<namespace> -n <namespace>
Please make this clear in install procedure.
[1] https://github.com/wildfly/wildfly-operator#OpenShift
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Instructions how to install operator on OpenShift [1] are shown under
cluster-admin
role.As
role
,role-binding
andcrd
are cluster scoped resources I would expect that onlycluster-admin
can specify that.However I wouldt expect to have
cluster-admin
role to be able to deploy application using operator withoc apply -f deploy/crds/quickstart-cr.yaml
To be able to run this as
developer
user have to be granted (by cluster-admin) these permission:Please make this clear in install procedure.
[1] https://github.com/wildfly/wildfly-operator#OpenShift
The text was updated successfully, but these errors were encountered: