From 30a7f062e86a767022484f56f4b24b13dc062660 Mon Sep 17 00:00:00 2001 From: ritvibhatt <53196324+ritvibhatt@users.noreply.github.com> Date: Tue, 17 Dec 2024 11:21:42 -0800 Subject: [PATCH] configure opensearch dashboards before running in ci (#2291) Signed-off-by: Ritvi Bhatt Co-authored-by: Ritvi Bhatt --- .../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 00c7fb117..679190ba6 100644 --- a/.github/workflows/ftr-e2e-dashboards-observability-test.yml +++ b/.github/workflows/ftr-e2e-dashboards-observability-test.yml @@ -108,6 +108,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: |