You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@solr.apache.org by "hmontesdeoca (via GitHub)" <gi...@apache.org> on 2023/03/20 15:47:45 UTC

[GitHub] [solr-operator] hmontesdeoca opened a new issue, #534: zk provided pvc

hmontesdeoca opened a new issue, #534:
URL: https://github.com/apache/solr-operator/issues/534

   Hello,
   
   I am currently using Azure to set up aks clusters utilizing solr-cloud helm charts and the provided zookeeper ensemble. I want to mount zookeeper logs onto a Azure File Share but I cant seem to specify a pvc for the zk provided ensemble. It only seems to accept a 'spec' as some sort of reference. How can I specify a PVC for zookeeper? Can I mount directly to the logs directory for zookeeper pods?
   ```
    zk:
       provided:
         persistence:
           spec:
             storageClassName:  "solr"
             #can I specify a path, volume, volume mount, or pvc?
   ```
   


-- 
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.

To unsubscribe, e-mail: issues-unsubscribe@solr.apache.org.apache.org

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


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


[GitHub] [solr-operator] hmontesdeoca commented on issue #534: Ability to add additional volumes to Zookeeper Pods

Posted by "hmontesdeoca (via GitHub)" <gi...@apache.org>.
hmontesdeoca commented on issue #534:
URL: https://github.com/apache/solr-operator/issues/534#issuecomment-1487639416

   thank you for the information, I will relay this to my team.


-- 
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.

To unsubscribe, e-mail: issues-unsubscribe@solr.apache.org

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


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


[GitHub] [solr-operator] HoustonPutman closed issue #534: Ability to add additional volumes to Zookeeper Pods

Posted by "HoustonPutman (via GitHub)" <gi...@apache.org>.
HoustonPutman closed issue #534: Ability to add additional volumes to Zookeeper Pods
URL: https://github.com/apache/solr-operator/issues/534


-- 
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.

To unsubscribe, e-mail: issues-unsubscribe@solr.apache.org

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


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


[GitHub] [solr-operator] HoustonPutman commented on issue #534: Ability to add additional volumes to Zookeeper Pods

Posted by "HoustonPutman (via GitHub)" <gi...@apache.org>.
HoustonPutman commented on issue #534:
URL: https://github.com/apache/solr-operator/issues/534#issuecomment-1513270866

   This is going to be handled in https://github.com/apache/solr-operator/issues/557


-- 
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.

To unsubscribe, e-mail: issues-unsubscribe@solr.apache.org

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


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


[GitHub] [solr-operator] HoustonPutman commented on issue #534: zk provided pvc

Posted by "HoustonPutman (via GitHub)" <gi...@apache.org>.
HoustonPutman commented on issue #534:
URL: https://github.com/apache/solr-operator/issues/534#issuecomment-1487027991

   Ahh so it looks like the zookeeper operator does support additional volumes, but the solr operator doesn't allow that functionality. We should make a PR to add the additional functionality not supported by the Solr Operator.


-- 
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.

To unsubscribe, e-mail: issues-unsubscribe@solr.apache.org

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


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


[GitHub] [solr-operator] hmontesdeoca commented on issue #534: zk provided pvc

Posted by "hmontesdeoca (via GitHub)" <gi...@apache.org>.
hmontesdeoca commented on issue #534:
URL: https://github.com/apache/solr-operator/issues/534#issuecomment-1476504523

   I have specified a storage class name but I would like to mount this pvc to an azure file share. For example, once I create this release via helm I notice it automatically creates new data pvc's according to how many replicas I would like set for the ensemble.
   
   In this case the following command `kubectl get pvc -n <namespace>` with 3 replicas for a values file this would show:
   
   `<release-name>-solrcloud-zookeeper-0`
   `<release-name>-solrcloud-zookeeper-1`
   `<release-name>-solrcloud-zookeeper-2'
   
   And they are all bound to the storage class "solr" as mentioned above with the snippet of the yaml file.
   I would simply like to have a mount to a fileshare represented as a pvc in addition to these automatically provisioned pvcs. This could be seen with the solrcloud helm chart and many others. I just cant seem to find the documentation on this zookeeper provided subchart when specifying volume mounts.
    


-- 
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.

To unsubscribe, e-mail: issues-unsubscribe@solr.apache.org

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


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


[GitHub] [solr-operator] Frankkkkk commented on issue #534: zk provided pvc

Posted by "Frankkkkk (via GitHub)" <gi...@apache.org>.
Frankkkkk commented on issue #534:
URL: https://github.com/apache/solr-operator/issues/534#issuecomment-1476486297

   You must specify a storage class name. You can list them with `kubectl get sc`. On azure, you could use `azurefile-csi-premium` for example


-- 
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.

To unsubscribe, e-mail: issues-unsubscribe@solr.apache.org

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


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