Hello,
I'm currently deploying One Identity Manager 9.2 in a Kubernetes environment, using the official Docker images:
-
oneidentity/oneim-appserver:9.2
-
oneidentity/oneim-api:9.2
Context
-
I deployed the App Server with the appropriate environment variables:
-
DBSYSTEM=MSSQL
-
CONNSTRING=Data Source=<sql-host>\\<instance>;Initial Catalog=OneIM;User ID=<user>;Password=<pwd>;Encrypt=True;TrustServerCertificate=True
-
BASEURL=oneim-app.mydomain.local/
-
UPDATEUSER=cccAdmin
-
UPDATEUSERPASSWORD=<valid-password>
-
TARGETS=Server\\Web\\AppServer
-
-
The pod is running.
-
The login interface is reachable.
-
I can successfully authenticate using
cccAdmin
.
Problem
However, after login, I receive the error:
This error loops continuously in logs every few seconds. The endpoint /appserver/update/allowed
returns a 404 when called manually with curl
from inside the pod (unless authenticated, in which case it redirects to /login.aspx
).
What I've tried
-
Verified that the
cccAdmin
user exists and can log in. -
Ensured the
TARGETS
variable is set to onlyServer\Web\AppServer
. -
Tried using and not using a
ConfigMap
forWeb.config
— no impact.
Questions
-
Is
/appserver/update/allowed
supposed to be a real endpoint? If so, what conditions are required for it to be enabled? -
Is there something wrong in my
TARGETS
or configuration that would prevent this from being exposed? -
Are there additional steps required after first deployment to enable full functionality of the App Server?
Thanks in advance for any help you can provide
Chakir EL HABRIRI