You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the operator doesn't support TLS termination at the Ingress. Users can configure TLS all the way through from Ingress to Solr pods and between them. This would be an easy enhancement, but requires adding a field to the solrAddressability.external struct to hold the TLS secret name so that we can configure the Ingess with:
spec:
tls:
- hosts:
- foo.bar.com
# This assumes tls-secret exists and the SSL
# certificate contains a CN for foo.bar.com
secretName: tls-secret
Related request. Allow custom annotations on Ingress so that cert-manager can create the tls secret. Not sure if this should be a separate issue. https://cert-manager.io/docs/usage/ingress/
Currently, the operator doesn't support TLS termination at the Ingress. Users can configure TLS all the way through from Ingress to Solr pods and between them. This would be an easy enhancement, but requires adding a field to the
solrAddressability.external
struct to hold the TLS secret name so that we can configure the Ingess with:see: https://kubernetes.github.io/ingress-nginx/examples/tls-termination/
In the meantime, users will need to create their own Ingress instead of using the one created by the operator.
The text was updated successfully, but these errors were encountered: