-
Notifications
You must be signed in to change notification settings - Fork 281
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Backport 2.x] Add install_demo_configuration Batch script for Windows (
#2203) * Add install_demo_configuration Batch script for Windows (#2161) Signed-off-by: Craig Perkins <[email protected]> Signed-off-by: Stephen Crawford <[email protected]> Co-authored-by: Stephen Crawford <[email protected]> Co-authored-by: Stephen Crawford <[email protected]> (cherry picked from commit 45c766f) * Change to 2.4.0 for the min url Signed-off-by: Peter Zhu <[email protected]> Signed-off-by: Peter Zhu <[email protected]> Co-authored-by: Craig Perkins <[email protected]> Co-authored-by: Peter Zhu <[email protected]>
- Loading branch information
1 parent
27dfc46
commit 51a2862
Showing
2 changed files
with
475 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,63 +3,120 @@ name: Plugin Install | |
on: [push, pull_request, workflow_dispatch] | ||
|
||
jobs: | ||
plugin_install: | ||
name: Plugin Install | ||
|
||
linux-install: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Set up JDK | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 11 | ||
|
||
- name: Build | ||
run: ./gradlew clean assemble -Dbuild.snapshot=false | ||
|
||
- name: Download OpenSearch Core | ||
run: | | ||
opensearch_version=`./gradlew properties -q | grep "opensearch_version:" | awk '{print $2}' | sed 's/-SNAPSHOT//g'` | ||
wget https://ci.opensearch.org/ci/dbc/distribution-build-opensearch/$opensearch_version/latest/linux/x64/tar/builds/opensearch/dist/opensearch-min-$opensearch_version-linux-x64.tar.gz | ||
tar -xzf opensearch-*.tar.gz | ||
rm -f opensearch-*.tar.gz | ||
- name: Move and rename security plugin for installation | ||
run: mv build/distributions/opensearch-security-*.zip opensearch-security.zip | ||
|
||
- name: Run OpenSearch with plugin | ||
run: | | ||
cat > os-ep.sh <<EOF | ||
yes | opensearch-plugin install file:///docker-host/security-plugin.zip | ||
chmod +x plugins/opensearch-security/tools/install_demo_configuration.sh | ||
yes | plugins/opensearch-security/tools/install_demo_configuration.sh | ||
chown 1001:1001 -R /opensearch | ||
su -c "/opensearch/bin/opensearch" -s /bin/bash opensearch | ||
EOF | ||
docker build -t opensearch-test:latest -f- . <<EOF | ||
FROM ubuntu:latest | ||
COPY --chown=1001:1001 os-ep.sh /docker-host/ | ||
COPY --chown=1001:1001 opensearch-security.zip /docker-host/security-plugin.zip | ||
COPY --chown=1001:1001 opensearch* /opensearch/ | ||
RUN chmod +x /docker-host/os-ep.sh | ||
RUN useradd -u 1001 -s /sbin/nologin opensearch | ||
ENV PATH="/opensearch/bin:${PATH}" | ||
WORKDIR /opensearch/ | ||
ENTRYPOINT /docker-host/os-ep.sh | ||
EOF | ||
docker run --name ops -d -p 9200:9200 -p 9600:9600 -i opensearch-test:latest | ||
- name: Sleep while OpenSearch finishes starting up | ||
uses: whatnick/[email protected] | ||
with: | ||
time: '30s' | ||
|
||
- name: Check OpenSearch Running | ||
run: curl -XGET https://localhost:9200 -u 'admin:admin' -k -v | ||
|
||
- name: Get Docker Logs | ||
if: always() | ||
run: docker logs ops | ||
|
||
- name: Run sanity tests | ||
run: ./gradlew integTestRemote -Dtests.rest.cluster=localhost:9200 -Dtests.cluster=localhost:9200 -Dtests.clustername="opensearch" -Dhttps=true -Duser=admin -Dpassword=admin | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Set up JDK | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 11 | ||
|
||
- name: Build | ||
run: ./gradlew clean assemble -Dbuild.snapshot=false | ||
|
||
- name: Download OpenSearch Core | ||
run: | | ||
opensearch_version=`./gradlew properties -q | grep "opensearch_version:" | awk '{print $2}' | sed 's/-SNAPSHOT//g'` | ||
wget https://ci.opensearch.org/ci/dbc/distribution-build-opensearch/$opensearch_version/latest/linux/x64/tar/builds/opensearch/dist/opensearch-min-$opensearch_version-linux-x64.tar.gz | ||
tar -xzf opensearch-*.tar.gz | ||
rm -f opensearch-*.tar.gz | ||
- name: Move and rename security plugin for installation | ||
run: mv build/distributions/opensearch-security-*.zip opensearch-security.zip | ||
|
||
- name: Run OpenSearch with plugin | ||
run: | | ||
cat > os-ep.sh <<EOF | ||
yes | opensearch-plugin install file:///docker-host/security-plugin.zip | ||
chmod +x plugins/opensearch-security/tools/install_demo_configuration.sh | ||
yes | plugins/opensearch-security/tools/install_demo_configuration.sh | ||
chown 1001:1001 -R /opensearch | ||
su -c "/opensearch/bin/opensearch" -s /bin/bash opensearch | ||
EOF | ||
docker build -t opensearch-test:latest -f- . <<EOF | ||
FROM ubuntu:latest | ||
COPY --chown=1001:1001 os-ep.sh /docker-host/ | ||
COPY --chown=1001:1001 opensearch-security.zip /docker-host/security-plugin.zip | ||
COPY --chown=1001:1001 opensearch* /opensearch/ | ||
RUN chmod +x /docker-host/os-ep.sh | ||
RUN useradd -u 1001 -s /sbin/nologin opensearch | ||
ENV PATH="/opensearch/bin:${PATH}" | ||
WORKDIR /opensearch/ | ||
ENTRYPOINT /docker-host/os-ep.sh | ||
EOF | ||
docker run --name ops -d -p 9200:9200 -p 9600:9600 -i opensearch-test:latest | ||
- name: Sleep while OpenSearch finishes starting up | ||
uses: whatnick/[email protected] | ||
with: | ||
time: '30s' | ||
|
||
- name: Check OpenSearch Running | ||
run: curl -XGET https://localhost:9200 -u 'admin:admin' -k -v | ||
|
||
- name: Get Docker Logs | ||
if: always() | ||
run: docker logs ops | ||
|
||
- name: Run sanity tests | ||
run: ./gradlew integTestRemote -Dtests.rest.cluster=localhost:9200 -Dtests.cluster=localhost:9200 -Dtests.clustername="opensearch" -Dhttps=true -Duser=admin -Dpassword=admin | ||
|
||
windows-install: | ||
|
||
runs-on: windows-latest | ||
|
||
steps: | ||
- name: Enable longer filenames for Windows | ||
run: git config --system core.longpaths true | ||
|
||
- name: Checkout Plugin | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up JDK | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 11 | ||
|
||
- name: Download OpenSearch Core | ||
run: | | ||
cd .. | ||
Invoke-WebRequest https://artifacts.opensearch.org/snapshots/core/opensearch/2.4.0-SNAPSHOT/opensearch-min-2.4.0-SNAPSHOT-windows-x64-latest.zip -Outfile opensearch-2.4.0.zip | ||
tar -xzf opensearch-2.4.0.zip | ||
del opensearch-2.4.0.zip | ||
Rename-Item opensearch-* Opensearch | ||
- name: Build Security Plugin with Gradle | ||
run: | | ||
.\gradlew.bat assemble | ||
env: | ||
_JAVA_OPTIONS: -Xmx4096M | ||
|
||
- name: Move and rename security plugin | ||
run: move build\distributions\opensearch-security-*.zip ..\opensearch-security.zip | ||
|
||
- name: Install the plugin | ||
run: | | ||
cd .. | ||
'y' | .\Opensearch\bin\opensearch-plugin.bat install file:\a\security\opensearch-security.zip | ||
'y', 'y', 'N' | .\Opensearch\plugins\opensearch-security\tools\install_demo_configuration.bat | ||
- name: Run OpenSearch with plugin | ||
run: | | ||
cd .. | ||
start .\Opensearch\bin\opensearch.bat | ||
- name: Sleep while OpenSearch finishes starting up | ||
run: Start-Sleep -s 30 | ||
|
||
- name: Check OpenSearch Running | ||
run: | | ||
$credentialBytes = [Text.Encoding]::ASCII.GetBytes("admin:admin") | ||
$encodedCredentials = [Convert]::ToBase64String($credentialBytes) | ||
$baseCredentials = "Basic $encodedCredentials" | ||
$Headers = @{ Authorization = $baseCredentials } | ||
Invoke-WebRequest -SkipCertificateCheck -Uri 'https://localhost:9200' -Headers $Headers |
Oops, something went wrong.