惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园_首页
H
Help Net Security
N
Netflix TechBlog - Medium
Apple Machine Learning Research
Apple Machine Learning Research
P
Proofpoint News Feed
A
About on SuperTechFans
V
V2EX
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
宝玉的分享
宝玉的分享
aimingoo的专栏
aimingoo的专栏
F
Fortinet All Blogs
博客园 - 【当耐特】
Microsoft Security Blog
Microsoft Security Blog
Martin Fowler
Martin Fowler
I
InfoQ
Google DeepMind News
Google DeepMind News
人人都是产品经理
人人都是产品经理
Engineering at Meta
Engineering at Meta
腾讯CDC
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
B
Blog RSS Feed
U
Unit 42
The Cloudflare Blog
Y
Y Combinator Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Integrating FreeIPA (LDAP) with OpenShift + Automated Gro...
Ashish Nair · 2026-05-14 · via DEV Community

Ashish Nair

Managing users and groups centrally is critical in enterprise Kubernetes environments. In this guide, I’ll walk you through how I integrated FreeIPA (LDAP) with OpenShift and set up an automated CronJob to sync groups periodically.

This setup ensures:

  • Centralized authentication via FreeIPA
  • Automatic onboarding of users
  • Continuous group synchronization inside OpenShift

The Architecture:

And now, the subtitles for the Architecture!

  1. User Login

    • Developer logs in via OpenShift Console or CLI (oc login)
  2. Authentication via LDAP/FreeIPA

    • OpenShift OAuth server uses the configured LDAP Identity Provider
    • Performs bind + search using the ldapbind service account
  3. Group Sync Process

    • oc adm groups sync queries LDAP periodically
    • Fetches:
      • Users
      • Groups
      • Membership mapping
    • Updates OpenShift Group objects
  4. Automation

    • CronJob runs the sync automatically every minute (in our setup)

The Integration:

  • Create a bind user (ldapbind in our case) to query LDAP/FreeIPA. Of course, you need to run this on the LDAP server. I have redacted some part of the output.
#ipa user-add ldapbind --first=ldap --last=bind --password
Password: 
Enter Password again to verify: 
---------------------
Added user "ldapbind"
---------------------
  User login: ldapbind
  First name: ldap
  Last name: bind
  Full name: ldap bind

Enter fullscreen mode Exit fullscreen mode

  • Using the password you set, create a "secret" in openshift.
#oc create secret generic ldap-bind-password --from-literal=bindPassword='redhat' -n openshift-config

secret/ldap-bind-password created

Enter fullscreen mode Exit fullscreen mode

  • Configure Oauth to use the LDAP/FreeIPA server. Basically, telling OAuth who's our LDAP server, where to search, the user who's allowed to search along with reference to the secret we created above, Yadda, Yadda, Yadda!! Here's the manifest and the command:
apiVersion: config.openshift.io/v1
kind: OAuth
metadata:
  name: cluster
spec:
  identityProviders:
    - name: freeipa
      mappingMethod: claim
      type: LDAP
      ldap:
        url: "ldap://192.168.122.246/dc=example,dc=com?uid"
        bindDN: "uid=ldapbind,cn=users,cn=accounts,dc=example,dc=com"
        bindPassword:
          name: ldap-bind-password
        insecure: true
        attributes:
          id: [dn]
          name: [cn]
          email: [mail]
          preferredUsername: [uid]


#oc apply -f ldap.yaml 
oauth.config.openshift.io/cluster configured

Enter fullscreen mode Exit fullscreen mode

Note: If you're too impatient, you can delete the pods in the "openshift-authentication" namespace so the integration is immediately picked up when the pods start back.

  • I created a user named "ashish" and Voila! I was able to login.
#oc login -u ashish api.snomaster.lab:6443 
Console URL: https://api.snomaster.lab:6443/console
Authentication required for https://api.snomaster.lab:6443 (openshift)
Username: ashish
Password: 
Login successful.

You don't have any projects. You can try to create a new project, by running

oc new-project <projectname>

Enter fullscreen mode Exit fullscreen mode

  • Here's the tricky part. Whatever groups you create in LDAP/FreeIPA are not automatically imported by Openshift. This is where the second part of this article kicks in - _Automatic Group Sync. _

Automatic Group Sync - Part 1 ( The Manual way)

  • In this part we will create a manifest and run it to test if the manual sync works, if that works it's just a matter of creating a cron resource (Isolation is key!).This method is like a test that our manifest and group-sync works. So, here's the manifest
kind: LDAPSyncConfig
apiVersion: v1

url: ldap://192.168.122.246

bindDN: "uid=ldapbind,cn=users,cn=accounts,dc=example,dc=com"

bindPassword:
  file: "/etc/secrets/bindPassword"

insecure: true

rfc2307:
  groupsQuery:
    baseDN: "cn=groups,cn=accounts,dc=example,dc=com"
    scope: sub
    derefAliases: never
    filter: "(objectClass=groupofnames)"

  groupUIDAttribute: dn
  groupNameAttributes: [ cn ]

  groupMembershipAttributes: [ member ]

  usersQuery:
    baseDN: "cn=users,cn=accounts,dc=example,dc=com"
    scope: sub
    derefAliases: never

  userUIDAttribute: dn

  userNameAttributes: [ uid ]

Enter fullscreen mode Exit fullscreen mode

  • Create a file that holds the "bind" password . These are the reasons why this is a bad method and should only be used for testing our sync. (These plain text passwords can give security guys an heart-attack!!)
#printf '%s' 'redhat' > /home/user/ldap-manifs/bindPassword

Enter fullscreen mode Exit fullscreen mode

  • Time to test our group-sync. You might as well create some groups on your LDAP/FreeIPA server.
#oc adm groups sync --sync-config=group-sync.yaml --confirm
group/admins
group/ipausers
group/editors
group/trust admins
group/developers
group/platform-admins

Enter fullscreen mode Exit fullscreen mode

  • We can also cross verify if they're actually visible in openshift.
#oc get groups
NAME              USERS
admins            admin
developers        bob
editors           
ipausers          ldapbind, ashish, bob
platform-admins   ashish
trust admins      admin

Enter fullscreen mode Exit fullscreen mode

  • Why I call this automatic is, you can still add the oc adm groups sync command to cron and this will work just fine. The only bad part is the handling of password. There are ways to work around it, like ansible-ize your sync method and use ansible-vault to store the password or use Hashi Vault to store the password and fetch it using API's. We aren't going to touch base on those methods today. I will stick to the openshift-way of doing it. That brings us to part 2.

Automatic Group Sync - Part 2 ( The Openshift way)

  • The manifest remains the same, it's just that we will add the following resources to comply with production-grade standards:
  • We will create a secret to store the bind password. (Which we already did!).
  • Create a configMap that will store our group-sync manifest.
  • Create a CronJob Resource, this is the most interesting part.

  • Create a group-sync configMap
    This is same group-sync manifest we used before, just we add it as a configMap resource this time. Here's the manifest

apiVersion: v1
kind: ConfigMap
metadata:
  name: ldap-group-sync-config
data:
  group-sync.yaml: |
    kind: LDAPSyncConfig
    apiVersion: v1

    url: ldap://192.168.122.246

    bindDN: "uid=ldapbind,cn=users,cn=accounts,dc=example,dc=com"

    bindPassword:
      file: "/etc/secrets/bindPassword"

    insecure: true

    rfc2307:
     groupsQuery:
       baseDN: "cn=groups,cn=accounts,dc=example,dc=com"
       scope: sub
       derefAliases: never
       filter: "(objectClass=groupofnames)"

     groupUIDAttribute: dn
     groupNameAttributes: [ cn ]

     groupMembershipAttributes: [ member ]

     usersQuery:
      baseDN: "cn=users,cn=accounts,dc=example,dc=com"
      scope: sub
      derefAliases: never

     userUIDAttribute: dn

     userNameAttributes: [ uid ]

Enter fullscreen mode Exit fullscreen mode

  • The most interesting part of this process. We create a CronJob resource, this resource creates a temporary pod. This pod will mount our configMap and Secret inside the pod, run our job and terminate the pod. You're free to change the schedule.
apiVersion: batch/v1
kind: CronJob
metadata:
  name: ldap-group-sync
spec:
  schedule: "* * * * *"
  jobTemplate:
    spec:
     template:
      spec:
       serviceAccountName: ldap-group-sync
       restartPolicy: OnFailure
       containers:
         - name: ldap-group-sync
           image: registry.redhat.io/openshift4/ose-cli
           command:
             - /bin/bash
             - -c 
             - |
             - oc adm groups sync --sync-config=/config/group-sync.yaml --confirm 
           volumeMounts:
             - name: sync-config
               mountPath: /config
           volumeMounts:
             - name: bind-secret
               mountPath: /etc/secrets
       volumes:
        - name: sync-config
          configMap:
           name: ldap-group-sync-config

        - name: bind-secret
          secret:
           secretName: ldap-bind-password

Enter fullscreen mode Exit fullscreen mode

  • You can monitor the status under oc logs job/. You will see something to the tune of :
{"apiVersion":"v1","bindDN":"uid=ldapbind,cn=users,cn=accounts,dc=example,dc=com","bindPassword":{"file":"/etc/secrets/bindPassword"},"insecure":true,"kind":"LDAPSyncConfig","rfc2307":{"groupMembershipAttributes":["member"],"groupNameAttributes":["cn"],"groupUIDAttribute":"dn","groupsQuery":{"baseDN":"cn=groups,cn=accounts,dc=example,dc=com","derefAliases":"never","filter":"(objectClass=groupofnames)","scope":"sub"},"userNameAttributes":["uid"],"userUIDAttribute":"dn","usersQuery":{"baseDN":"cn=users,cn=accounts,dc=example,dc=com","derefAliases":"never","scope":"sub"}},"url":"ldap://192.168.122.246"}
group/admins
group/ipausers
group/editors
group/trust admins
group/developers
group/platform-admins
group/testers
group/hr

Enter fullscreen mode Exit fullscreen mode

And just like that we have a fully automated Identity and Access management up and running.