Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion api/v1beta1/solrcloud_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,8 @@ type SolrCloudSpec struct {
SolrModules []string `json:"solrModules,omitempty"`

// List of paths in the Solr Docker image to load in the classpath.
// Note: Solr Modules will be auto-loaded if specified in the "solrModules" property. There is no need to specify them here as well.
// There is no need to include paths for Solr Modules already specified in the "solrModules" property, those paths will be added automatically.
// Note that this setting has no effect on solrcloud clusters that rely on a user-provided solr.xml file.
//
//+optional
AdditionalLibs []string `json:"additionalLibs,omitempty"`
Expand Down
3 changes: 2 additions & 1 deletion config/crd/bases/solr.apache.org_solrclouds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@ spec:
additionalLibs:
description: |-
List of paths in the Solr Docker image to load in the classpath.
Note: Solr Modules will be auto-loaded if specified in the "solrModules" property. There is no need to specify them here as well.
There is no need to include paths for Solr Modules already specified in the "solrModules" property, those paths will be added automatically.
Note that this setting has no effect on solrcloud clusters that rely on a user-provided solr.xml file.
items:
type: string
type: array
Expand Down
3 changes: 2 additions & 1 deletion helm/solr-operator/crds/crds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,8 @@ spec:
additionalLibs:
description: |-
List of paths in the Solr Docker image to load in the classpath.
Note: Solr Modules will be auto-loaded if specified in the "solrModules" property. There is no need to specify them here as well.
There is no need to include paths for Solr Modules already specified in the "solrModules" property, those paths will be added automatically.
Note that this setting has no effect on solrcloud clusters that rely on a user-provided solr.xml file.
items:
type: string
type: array
Expand Down
2 changes: 1 addition & 1 deletion helm/solr/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ Descriptions on how to use these options can be found in the [SolrCloud document
| solrOptions.logLevel | string | `"INFO"` | Log level to run Solr under |
| solrOptions.gcTune | string | `""` | GC Tuning parameters for Solr |
| solrOptions.solrModules | []string | | List of packaged Solr Modules to load when running Solr. Note: There is no need to specify solr modules necessary for other parts of the Spec (i.e. `backupRepositories[].gcs`), those will be added automatically. |
| solrOptions.additionalLibs | []string | | List of paths in the Solr Image to add to the classPath when running Solr. Note: There is no need to include paths for solrModules here if already listed in `solrModules`, those paths will be added automatically. |
| solrOptions.additionalLibs | []string | | List of paths in the Solr Image to add to the classPath when running Solr. (There is no need to include paths for solrModules here if already listed in `solrModules`, those paths will be added automatically.) Note that this setting has no effect on solrcloud clusters that rely on a user-provided `solr.xml` file. |
| solrOptions.security.authenticationType | string | `""` | Type of authentication to use for Solr |
| solrOptions.security.basicAuthSecret | string | `""` | Name of Secret in the same namespace that stores the basicAuth information for the Solr user |
| solrOptions.security.probesRequireAuth | boolean | | Whether the probes for the SolrCloud pod require auth |
Expand Down
Loading