I am trying to set up an XtraDB cluster in kubernetes to support PAM authentication.
To initialize, I used helm to install the operator and used helm template
to get the XtraDB manifest so I could modify it. Next, I created a new image, with the image used for the pxc
pods as a base. This new image adds a mysqld
, libpam_oidc.yaml
and libpam_oidc.so
to the container, but otherwise does not alter the image.
After applying the customized manifest, I found the pods starting, as they did before I changed the manifest. I was able to log in using the root credentials as before, but I was not able to use PAM authentication. Additionally, I couldn’t find logs for the failed log in attempt anywhere, so I haven’t been able to troubleshoot much further.
Is it possible to use PAM authentication with XtraDB? Where should I look for logs regarding this issue?
I found another user had a similar issue here, but no answer to this issue.