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


   You can either pass save these values as a file and pass it as an override 
values.yaml through `--values <file_name>`, which will use the default values 
provided in the helm chart, expect for the overrides you have provided in your 
file.
   
   If you don't want to manage files, then you can just use `--set` for all of 
the above things you want to change.
   
   ```
   helm install example-solr apache-solr/solr --version 0.5.0 \
   --set image.repository="custom.docker.repo/solr" \
   --set image.tag=8.4 \
   --set dataStorage.persistent.pvc.storageClassName="solr-storage" \
   --set zk.provided.persistence.spec.storageClassName="solr-storage"
   --set zk.provided.image.repository="custom.docker.repo/zookeeper" \
   --set busyBoxImage.repository="custom.docker.repo/busybox" \
   --set busyBoxImage.tag="1.30.0"
   ```
   
   Passing each value independently through `--set`. You can find more 
information in the [helm docs](https://helm.sh/docs/helm/helm_install/).


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