We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2824849 commit 85d11afCopy full SHA for 85d11af
.github/workflows/integration.yaml
@@ -66,7 +66,15 @@ jobs:
66
elasticsearch:
67
image: ${{ matrix.elasticsearch }}
68
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.
71
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
+
78
options: >-
79
--health-cmd "curl http://localhost:9200/_cluster/health"
80
--health-interval 10s
0 commit comments