Hello,
I am running 4.x.x version of Rundeck community on ECS. The docker image is hosted in our own ECR customized for adding utilities. I have a realm.properties file defining the credentials for different users and secrets for DB stored in the secretsmanager. This setup is working completely fine.
I am migrating this over to EKS and modified just the docker image with 5.x.x version. I have created secrets in the same EKS cluster and namespace. The rundeck URL webpage is loading fine but unable to login with any of the credentials defined in the realm.properties file.
I also tried the default admin/admin login but that doesn't work too.
Any suggestions on how to resolve this issue?
Dockerfile
ARG RUNDECK_IMAGE
FROM ${RUNDECK_IMAGE}
COPY data/realm.properties /home/rundeck/server/config
COPY data/plugins/. /home/rundeck/libext
RUN sudo apt-get update && sudo apt-get install -y \
gnupg2 \
jq \
iputils-ping \
sharutils \
telnet \
unzip \
vim
&& unzip awscliv2.zip \
&& sudo ./aws/install