Jenkins Helm chart with AD Integration

Hello All,

I am deploying Jenkins with Helm chart in Amazon EKS, I need to integrate it with AD using ldaps .
Can any suggest how to update jenkins helm chart with AD integration

I am trying this , but its not working since not able to give the root cert
I was using below configuration , and its not working since i did not updated the root cert securityRealm: |-
ldap:
configurations:
- server: “ldaps://awsev1cttdc01.topp_company.wireless.ad:3455”
rootDN: dc=acme,dc=uk
groupMembershipStrategy:
fromUserRecord:
attributeName: “memberOf”

I think you’ll have to have a custom image with your certificate added to the keystore

so something like

FROM jenkins/jenkins:2.whatever
RUN keytool ...

then publish the image.

The helm chart might let you run arbitrary scripts or import volumes, but I have never looked into that.