-
-
Notifications
You must be signed in to change notification settings - Fork 126
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update localstack and opensearch #5824
Conversation
@ErikSchierboom Can you check you're happy with this please. |
Gemfile
Outdated
@@ -37,7 +37,7 @@ gem 'kaminari' | |||
gem 'oj', '~> 3.14.0' | |||
|
|||
# Setup dependencies | |||
gem 'exercism-config', '>= 0.106.0' | |||
gem 'exercism-config', '>= 0.107.0.beta1' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We need to release an actual config gem and update this before merging,
@@ -69,7 +69,7 @@ We use localstack and opensearch, and run them via Docker. | |||
|
|||
```bash | |||
docker run -dp 3042:8080 -p 3040:4566 -p 3041:4566 localstack/localstack | |||
docker run -dp 9200:9200 -e "discovery.type=single-node" opensearchproject/opensearch:1.1.0 | |||
docker run -dp 9200:9200 -e "discovery.type=single-node" opensearchproject/opensearch:2.9.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe we save these versions somewhere so that they're consistent in dev + ci?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done in 57ac597
Looks to be working: https://github.com/exercism/website/actions/runs/5724277008/job/15510467895
1cd61fa
to
57ac597
Compare
docker run -dp 3042:8080 -p 3040:4566 -p 3041:4566 localstack/localstack:2.2.0 | ||
docker run -dp 9200:9200 -e "discovery.type=single-node" opensearchproject/opensearch:2.9.0 | ||
docker run -dp 3042:8080 -p 3040:4566 -p 3041:4566 $(jq -r '.localstack' .dockerimages.json) | ||
docker run -dp 9200:9200 -e "discovery.type=single-node" $(jq -r '.opensearch' .dockerimages.json) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Neat!
No description provided.