diff --git a/.github/actions/download-plugin/action.yml b/.github/actions/download-plugin/action.yml index bbec33c8a..d50cfffd4 100644 --- a/.github/actions/download-plugin/action.yml +++ b/.github/actions/download-plugin/action.yml @@ -32,6 +32,7 @@ runs: chmod +x ./opensearch-${{ inputs.opensearch-version}}-SNAPSHOT/plugins/${{ inputs.plugin-name }}/tools/install_demo_configuration.sh /bin/bash -c "yes | ./opensearch-${{ inputs.opensearch-version}}-SNAPSHOT/plugins/${{ inputs.plugin-name }}/tools/install_demo_configuration.sh" echo "plugins.security.unsupported.restapi.allow_securityconfig_modification: true" >> ./opensearch-${{ inputs.opensearch-version }}-SNAPSHOT/config/opensearch.yml + echo "cluster.routing.allocation.disk.threshold_enabled: false" >> ./opensearch-${{ inputs.opensearch-version }}-SNAPSHOT/config/opensearch.yml EOF shell: bash @@ -41,5 +42,6 @@ runs: New-Item .\setup.bat -type file Set-Content .\setup.bat -Value "powershell.exe -noexit -command `".\opensearch-${{ inputs.opensearch-version}}-SNAPSHOT\plugins\${{ inputs.plugin-name }}\tools\install_demo_configuration.bat -y -i -c`"" Add-Content -Path .\setup.bat -Value "echo plugins.security.unsupported.restapi.allow_securityconfig_modification: true >> .\opensearch-${{ inputs.opensearch-version}}-SNAPSHOT\config\opensearch.yml" + Add-Content -Path .\setup.bat -Value "echo cluster.routing.allocation.disk.threshold_enabled: false >> .\opensearch-${{ inputs.opensearch-version}}-SNAPSHOT\config\opensearch.yml" Get-Content .\setup.bat shell: pwsh diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index a281f15f5..22d0d616b 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -73,15 +73,6 @@ jobs: sudo rm -rf /usr/share/dotnet sudo rm -rf "$AGENT_TOOLSDIRECTORY" - - name: Remove unnecessary files Windows - if: ${{ runner.os == 'Windows' }} - run: | - choco uninstall julia -n --force - choco uninstall imagemagick -n --force - choco uninstall imagemagick.app -n --force - choco uninstall r.project -n --force - choco uninstall rtools -n --force - - id: install-dashboards uses: ./.github/actions/install-dashboards with: @@ -94,11 +85,6 @@ jobs: - name: Yarn cache clean run: yarn cache clean - - name: Print disk free space - if: ${{ runner.os == 'Linux' }} - run: | - df . -h - - name: Run integration tests on Linux if: ${{ runner.os == 'Linux' }} run: |