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


   You can override the image for that container with:
   
   ```yaml
   busyBoxImage:
     repository: "busybox"
     tag: "1.28.0-glibc"
     pullPolicy: ""
     imagePullSecret: ""
   ```
   
   This image is used for an init container that sets up the data 
directory/`solr.xml`.
   And yes, the Solr Operator contains defaults that assume access to the 
default docker registry, docker hub. If you want to use a different repository 
then you need to set that for each image.
   
   ```yaml
   image:
     repository: "solr"
     tag: ""
     pullPolicy: ""
     imagePullSecret: ""
   
   zk:
     provided:
       image:
         repository: "pravega/zookeeper"
         tag: ""
         pullPolicy: IfNotPresent
         imagePullSecret: ""
   
   busyBoxImage:
     repository: "busybox"
     tag: "1.28.0-glibc"
     pullPolicy: ""
     imagePullSecret: ""
   ```


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