mirror of
https://github.com/graycoreio/github-actions-magento2.git
synced 2026-06-13 13:14:53 +00:00
fix: make es8 run correctly in integration tests (#66)
This commit is contained in:
@@ -66,7 +66,15 @@ jobs:
|
|||||||
elasticsearch:
|
elasticsearch:
|
||||||
image: ${{ matrix.elasticsearch }}
|
image: ${{ matrix.elasticsearch }}
|
||||||
env:
|
env:
|
||||||
|
# By default, ElasticSearch refuses to spawn in single node configuration, as it expects redundancy.
|
||||||
|
# This is a dev environment, so redundancy is just wasteful.
|
||||||
discovery.type: single-node
|
discovery.type: single-node
|
||||||
|
# Disable HTTPS and password authentication
|
||||||
|
# this is a local dev environment, so the added CA chain complexity is an extreme overkill
|
||||||
|
xpack.security.enabled: false
|
||||||
|
xpack.security.http.ssl.enabled: false
|
||||||
|
xpack.security.transport.ssl.enabled: false
|
||||||
|
|
||||||
options: >-
|
options: >-
|
||||||
--health-cmd "curl http://localhost:9200/_cluster/health"
|
--health-cmd "curl http://localhost:9200/_cluster/health"
|
||||||
--health-interval 10s
|
--health-interval 10s
|
||||||
|
|||||||
Reference in New Issue
Block a user