I have deployed Jenkins with Helm chart in EKS and integrated with our AD/LDAPS .
Now i am planning to add the role based capability to my jenkins instance, but with AD integration , the role base strategy is not working
If i use below code in helm chart , I am able to login and can do anything .
authorizationStrategy: |-
loggedInUsersCanDoAnything:
allowAnonymousRead: false
But if i enable the role based strategy , i am able to login but, don’t have admin privileges eventhough i belongs to jenkins-admin AD group in my active directory .
authorizationStrategy: |-
roleBased:
roles:
global:
- name: “admin”
description: “Jenkins administrators”
permissions:
- “Overall/Administer”
assignments:
- “admin”
- “Jenkins Admins”
- name: “jenkins-admin”
description: “Users in the Admin AD group”
permissions:
“Overall/Administer”
assignments:
- “admin”
- “Jenkins Admins”
Can someone help me is there anything i am missing