Skip to content

Commit

Permalink
re-order opensearch service in scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
sotojn committed Dec 16, 2024
1 parent 23a4595 commit cf3c867
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/scripts/src/helpers/test-runner/services.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,10 @@ const services: Readonly<Record<Service, Readonly<DockerRunOptions>>> = {
[Service.Opensearch]: {
image: config.OPENSEARCH_DOCKER_IMAGE,
name: `${config.TEST_NAMESPACE}_${config.OPENSEARCH_NAME}`,
ports: [`${config.OPENSEARCH_PORT}:${config.OPENSEARCH_PORT}`],
tmpfs: config.SERVICES_USE_TMPFS
? ['/usr/share/opensearch/data:uid=1000,gid=1000']
: undefined,
? ['/usr/share/opensearch/data:uid=1000,gid=1000']

Check failure on line 86 in packages/scripts/src/helpers/test-runner/services.ts

View workflow job for this annotation

GitHub Actions / lint-and-sync

Expected indentation of 12 spaces but found 8
: undefined,

Check failure on line 87 in packages/scripts/src/helpers/test-runner/services.ts

View workflow job for this annotation

GitHub Actions / lint-and-sync

Expected indentation of 12 spaces but found 8
ports: [`${config.OPENSEARCH_PORT}:${config.OPENSEARCH_PORT}`],
env: {
OPENSEARCH_JAVA_OPTS: config.SERVICE_HEAP_OPTS,
'network.host': '0.0.0.0',
Expand Down

0 comments on commit cf3c867

Please sign in to comment.