From eb8d67b76605771468e592cf5085cc98dad65414 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 17 Dec 2024 19:21:57 +0000 Subject: [PATCH] configure opensearch dashboards before running in ci (#2291) Signed-off-by: Ritvi Bhatt Co-authored-by: Ritvi Bhatt (cherry picked from commit 30a7f062e86a767022484f56f4b24b13dc062660) Signed-off-by: github-actions[bot] --- .../workflows/ftr-e2e-dashboards-observability-test.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/ftr-e2e-dashboards-observability-test.yml b/.github/workflows/ftr-e2e-dashboards-observability-test.yml index 25a70bc26..1dd7355a3 100644 --- a/.github/workflows/ftr-e2e-dashboards-observability-test.yml +++ b/.github/workflows/ftr-e2e-dashboards-observability-test.yml @@ -121,6 +121,15 @@ jobs: node-version: ${{ steps.versions_step.outputs.node_version }} registry-url: "https://registry.npmjs.org" + - name: Configure OpenSearch Dashboards + run: | + rm -rf ./config/opensearch_dashboards.yml + cat << 'EOT' > ./config/opensearch_dashboards.yml + server.host: "0.0.0.0" + home.disableWelcomeScreen: true + EOT + working-directory: OpenSearch-Dashboards + - name: Install correct yarn version for OpenSearch Dashboards id: setup-yarn run: |