Reputation: 21
Is it possible to install a specific version of Bonsai Elasticsearch in Heroku ?
I'm trying to follow the documentation with this command line => heroku addons:create bonsai:[plan] [-a APP_NAME] [--version=X.Y]
with this link https://docs.bonsai.io/article/194-heroku
I want to install 6.5.4 version. The command always install me latest version of ES which is 7.2.0
Anyone has same issue ? How can I fix this ?
Thx by advance !
Upvotes: 2
Views: 639
Reputation: 21
I have done it. But when I launch the command with --version=6.5.4
is not taking into account. 7.2.0 version is always install..
No error is report
Upvotes: 0
Reputation: 7949
You are going on right path.
You can do
heroku addons:create bonsai --version=6.5.4
for installing 6.5.4 version as per this documentation. Reference: https://docs.bonsai.io/article/194-heroku
What error you are facing after running this command?
Upvotes: 2