Skip to main content
Question

Kasen AD Entegration


Hello,

I have installed kasten via OpenShift operator with basic authentication. I need to change authentication to AD/LDAP.

Could any one know how to configure AD authentication without using helm.

 

Thanks 

Regards

2 comments

Hagag
Forum|alt.badge.img+2
  • Experienced User
  • 154 comments
  • February 28, 2025

Hello ​@turhan.sensoy 

You can achieve this by modifying the K10 Operand YAML file in the operator. Open the YAML file and, under spec.auth, add the relevant parameters as specified in Helm method.

For example, to enable LDAP authentication:

In Helm, the parameter is:

 

 

--set auth.ldap.enabled=true

 

 

In the Operand YAML file, you need to add:

 
spec: 
  auth: 
    ldap: 
      enabled: true

 

you need to do the same for the rest of authenticaiton attributes/parameters



Best regards,
Ahmed Hagag


jaiganeshjk
Forum|alt.badge.img+2
  • Experienced User
  • 274 comments
  • February 28, 2025

Comment