Bundle installation fails after moving from http to https

I deployed my Entando instance using http, then we switched it to https. Unfortunately, the change does not seem to be transposed when it comes to keycloak. In the default-so capability and in the EntandoApp there is a status property that reports the keycloak address still using the http protocol. How can I fix this so that the bundles can be installed again?

Hi, In order to fix this you need to patch the ProvidedCapabilities Status using oc or kubectl command:

kubectl patch ProvidedCapabilities default-sso-in-namespace --subresource=‘status’ --type=‘merge’ -p '{“status”: {“serverStatuses”:{“main”: {“externalBaseUrl”: "https://your_fqdn/auth"}}}}’

After patching the ProvidedCapabilities reinstall the bundle and see if it does install correctly.