HoustonPutman commented on issue #381:
URL: https://github.com/apache/solr-operator/issues/381#issuecomment-984786918


   Ahh I think that is a sentence left over from before the Solr helm chart 
existed. The best example `values.yaml` file is actually the default: 
https://github.com/apache/solr-operator/blob/v0.5.0/helm/solr/values.yaml
   
   You don't need to (and shouldn't) include everything, since helm will use 
the default `values.yaml` as the starting point, then replace anything that is 
in your override values.yaml. So you can take the default values.yaml and 
remove anything that you don't want to change. For the example you have 
provided, you can merely use the following: (sets solr to use 8.4, uses a 
custom storage class name, and persistent storage for solr, and uses custom 
repositories for every image)
   
   ```yaml
   image:
     repository: "custom.docker.repo/solr"
     tag: "8.4"
   
   dataStorage:
     type: persistent
     persistent:
       pvc:
         storageClassName: "solr-storage"
   
   zk:
     provided:
       image:
         repository: "custom.docker.repo/zookeeper"
       persistence:
         spec:
           storageClassName: "solr-storage"
   
   busyBoxImage:
     repository: "custom.docker.repo/busybox"
   ```


-- 
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-unsubscr...@solr.apache.org

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



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

Reply via email to