Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion schedmd/slurm/25.11/rockylinux9/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -325,13 +325,17 @@ set -xeuo pipefail
dnf -q -y install --setopt='install_weak_deps=False' \
socat \
openssh-server \
authselect sssd sssd-ad sssd-ldap
authselect sssd sssd-ad sssd-ipa sssd-krb5 sssd-ldap sssd-idp \
krb5-pkinit
# Configure
mkdir -p /etc/authselect
authselect select sssd with-mkhomedir --force
rm -f /etc/ssh/ssh_host_*
EOR

# Override sshd config to enable keyboard-interactive for OAuth2/IdP auth
RUN echo "KbdInteractiveAuthentication yes" > /etc/ssh/sshd_config.d/00-ipa-idp.conf
Comment on lines +336 to +337
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You are free to customize this into your deployment or image, but Slinky bases should not be making opinions in this way. This change will not be accepted.


COPY files/etc/supervisord.conf /etc/
COPY \
files/etc/supervisord.d/fakesystemd-slurm.ini \
Expand Down