| Matthias Wessendorf David Martin Craig Brookes I have got this working manually against an `oc cluster up` cluster with self-signed certs. I have a question about when the APB should do this though. The way it works is by the Keycloak APB retrieving the cert of the oc cluster and then adding it to a trust store. Would I be right in saying this should only be done in development? If so, what's the best way to check if we're in development or not? I was thinking of checking for a secret named `mobile-configuration` or something and seeing whether `development_mode` is set to true. If it is then add the self-signed certificates to the trust store. If the secret doesn't exist or `development_mode` is false then skip it. Our development installer can then create this secret for us. Would this be an ok solution in your guys' opinion? |