You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@lucene.apache.org by GitBox <gi...@apache.org> on 2021/03/03 15:45:51 UTC

[GitHub] [lucene-solr-operator] khauser commented on issue #233: Our client needs zookeeper hosts

khauser commented on issue #233:
URL: https://github.com/apache/lucene-solr-operator/issues/233#issuecomment-789810863


   We now added an additional LB in front of the zookeeper instances in Azure with a private IP:
   ```
   apiVersion: v1
   kind: Service
   metadata:
     name: solr-zookeeper-internal-lb
     annotations:
       service.beta.kubernetes.io/azure-load-balancer-internal: "true"
   spec:
     type: LoadBalancer
     ports:
     - port: 2181
     selector:
       app: solr-cloud-solrcloud-zookeeper
   ```
   
   Together with the SolrClound+Ingress definition:
   ```
   apiVersion: solr.bloomberg.com/v1beta1
   kind: SolrCloud
   metadata:
     name: perftest-solr-cloud
   spec:
     replicas: 3
     solrImage:
       tag: 8.7.0
     solrJavaMem: "-Xms300m -Xmx300m"
     solrAddressability:
       external:
         method: Ingress
         useExternalAddress: true
         domainName: "<our_domain>"
   ```
   it seems to work properly.
   
   Thanks for your great work!
   
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@lucene.apache.org
For additional commands, e-mail: issues-help@lucene.apache.org