fix: make es8 run correctly in integration tests (#66)

This commit is contained in:
Damien Retzinger
2023-06-22 00:58:49 -04:00
committed by GitHub
parent 28248496e0
commit 85d11af76e
+8
View File
@@ -66,7 +66,15 @@ jobs:
elasticsearch:
image: ${{ matrix.elasticsearch }}
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
# 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: >-
--health-cmd "curl http://localhost:9200/_cluster/health"
--health-interval 10s