Skip to content

Commit 85d11af

Browse files
authored
fix: make es8 run correctly in integration tests (#66)
1 parent 2824849 commit 85d11af

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/integration.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,15 @@ jobs:
6666
elasticsearch:
6767
image: ${{ matrix.elasticsearch }}
6868
env:
69+
# By default, ElasticSearch refuses to spawn in single node configuration, as it expects redundancy.
70+
# This is a dev environment, so redundancy is just wasteful.
6971
discovery.type: single-node
72+
# Disable HTTPS and password authentication
73+
# this is a local dev environment, so the added CA chain complexity is an extreme overkill
74+
xpack.security.enabled: false
75+
xpack.security.http.ssl.enabled: false
76+
xpack.security.transport.ssl.enabled: false
77+
7078
options: >-
7179
--health-cmd "curl http://localhost:9200/_cluster/health"
7280
--health-interval 10s

0 commit comments

Comments
 (0)