Skip to content

Commit

Permalink
#50: Restrict to _actually_ available solr images.
Browse files Browse the repository at this point in the history
  • Loading branch information
reynoldsalec committed Sep 20, 2024
1 parent 8b7f269 commit 7641e89
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 9 deletions.
4 changes: 0 additions & 4 deletions builders/solr.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ const path = require('path');

// Versions
const supportedVersions = [
'9.9',
'9.8',
'9.7',
'9.6',
'9.5',
Expand Down Expand Up @@ -147,8 +145,6 @@ const parseConfig = options => {
case '8.1': return parse8(options);
case '8.0': return parse8(options);
case '8': return parse8(options);
case '9.9': return parse9(options);
case '9.8': return parse9(options);
case '9.7': return parse9(options);
case '9.6': return parse9(options);
case '9.5': return parse9(options);
Expand Down
2 changes: 0 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ services:
## Supported versions
* [9.9](https://hub.docker.com/_/solr/) **(experimental)**
* [9.8](https://hub.docker.com/_/solr/) **(experimental)**
* [9.7](https://hub.docker.com/_/solr/) **(experimental)**
* [9.6](https://hub.docker.com/_/solr/) **(experimental)**
* [9.5](https://hub.docker.com/_/solr/) **(experimental)**
Expand Down
2 changes: 1 addition & 1 deletion examples/9.x/.lando.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ services:
config:
dir: '9.x-conf'
patch:
type: solr:9.9
type: solr:9.7
core: solo
portforward: true
config:
Expand Down
4 changes: 2 additions & 2 deletions examples/9.x/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ Run the following commands to validate things are rolling as they should.
# Should use version 9.x for the default version
lando ssh -s helper -c "curl defaults:8983/solr/admin/info/system?wt=json" | grep "solr-spec-version" | grep "9."

# Should use version 9.0 on patch version
lando ssh -s helper -c "curl patch:8983/solr/admin/info/system" | grep "solr-spec-version" | grep "9.0"
# Should use version 9.7 on patch version
lando ssh -s helper -c "curl patch:8983/solr/admin/info/system" | grep "solr-spec-version" | grep "9.7"

# Should have lando core by default
lando ssh -s helper -c "curl defaults:8983/solr/admin/cores?action=STATUS" | grep lando
Expand Down

0 comments on commit 7641e89

Please sign in to comment.