Redirection issues while using Keycloak for a web app single sign on

We have a Admin URL (Web app landing page), we use Keycloak Docker image. This is deployed on Kubernetes cluster.
When I hit the Admin URL, the page return blanks.
To test, disabled the Admin URL, and hit the Keycloak URL, I am able to login to Keycloak and it redirects me to the Admin URL successfully.
Need to understand where the issue is? Is it from the Cluster level or is it Keycloak. Below is the configuration file for your reference

export const environment = {
production: true,
encryptPassword: false,
encryptAdminApiRequest: false,
clientUrl: 'https://adminportal.ai/consumerAPI',
adminUrl: 'https://adminportal.ai/adminAPI',
testUrl: 'https://adminportal.ai/adminAPI',
## The keyCloak URL loginUrl: 'https://qa-auth.ai:31049/auth/realms/qa/protocol/openid-connect/auth?client_id=qa-client&response_type=code&state=fj8o3n7bdy1op5&redirect_uri=https://adminportal.ai',
uamRedirectUrl: '[https://adminportal.ai/](https://adminportal.ai/)',
templatyzeUrl : 'https://adminportal.ai/templatyzeAPI',
eId:"qa",
appId:"ABC",
};