How to enable users belonging to group sonar-users see the analysis of the project done by the sonar-administrator?

442 views Asked by At

I have a community edition of sonarqube (version 8.8) setup running on GKE. I have created a public project using the Administrator user and running a jenkins job for python code analysis. Below is my sonarqube-scanner properties in Jenkins job:

sonar.projectKey=ws-python
sonar.scm.disabled = True
sonar.sources=./$branch/${BUILD_NUMBER}/backend/
sonar.language=py
sonar.host.url=http://<ip-address-of-sonarqube>
sonar.login=<project-key>

I created few users which by default belongs to sonar-users group and provided them the below access:

enter image description here

Upon successful analysis of the code, as an administrator user, I am able to see the dashboard with all the issues like bugs, vulnerabilities , security hotspots etc. But when I am seeing the same dashboard as any users belonging to the group sonar-users, I am unable to see anything in the dashboard. And I am getting below error:

enter image description here

Also, I have provided the access to all the users of the group sonar-users for the project. Can anyone help me how I can make these projects accessible to all the users?

0

There are 0 answers