'User is missing the Overall/Read permission' error with Jenkins GitHub OAuth Plugin

后端 未结 19 1895
天命终不由人
天命终不由人 2020-12-08 04:24

I\'m using the github oauth plugin for our logins but for all of our users in the Organisation I get an error:

Access Denied

 is missing the Ov         


        
19条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-08 05:08

    The assignment of roles to users is stored in config.xml file. Add the ID of the user directly to the role and then restart Jenkins.

    In my case, I have a role named editor and a bunch of users assigned to the role.

     
         
             <...>
             hudson.model.Item.Create
             hudson.model.Item.Workspace
             ...
         
         
             bob
             alice
             **newuser**   
         
      
    

提交回复
热议问题