Skip to content

Commit

Permalink
Updated default Elasticsearch version for magento2 environments fro…
Browse files Browse the repository at this point in the history
…m 5.4 to 6.8

Resolves #66
  • Loading branch information
davidalger committed Jan 7, 2020
1 parent e94db41 commit 59ac9ba
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
* Updated configuration setup for SSH tunnel container so it will automatically re-instate the needed configuration (if missing) when running `up`, `start`, or `restart` to mitigate issue caused by macOS Catalina updates wiping out customizations to `/etc/ssh/ssh_config` (issue [#59](https://github.com/davidalger/warden/issues/59))
* Added `laravel` environment type to support local development of Laravel based applications (issue [#60](https://github.com/davidalger/warden/issues/60))
* Updated `env-init` command to include default values for available variables in the project's `.env` making customization a bit easier (issue [#32](https://github.com/davidalger/warden/issues/32))
* Updated default Elasticsearch version for `magento2` environments from 5.4 to 6.8 (issue [#66](https://github.com/davidalger/warden/issues/66))

**Bug fixes:**
* Fixed broken incorrect Blackfire environment template name for magento1 env type (issue [#48](https://github.com/davidalger/warden/issues/48))
Expand Down
2 changes: 1 addition & 1 deletion commands/env-init.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ if [[ "${WARDEN_ENV_TYPE}" == "magento2" ]]; then
BYPASS_VARNISH=false
ELASTICSEARCH_VERSION=5.6
ELASTICSEARCH_VERSION=6.8
MARIADB_VERSION=10.3
NODE_VERSION=10
PHP_VERSION=7.2
Expand Down
2 changes: 1 addition & 1 deletion environments/magento2.base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ services:

elasticsearch:
hostname: "${WARDEN_ENV_NAME}-elasticsearch"
image: davidalger/warden:elasticsearch-${ELASTICSEARCH_VERSION:-5.6}
image: davidalger/warden:elasticsearch-${ELASTICSEARCH_VERSION:-6.8}
labels:
- traefik.enable=true
- traefik.http.routers.${WARDEN_ENV_NAME}-elasticsearch.tls=true
Expand Down

0 comments on commit 59ac9ba

Please sign in to comment.