Skip to content

Commit

Permalink
Test update OpenSearch to 2.18
Browse files Browse the repository at this point in the history
  • Loading branch information
isboston committed Dec 25, 2024
1 parent 2e6b474 commit 37c35a1
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build_packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,11 @@ on:
- 'release/**'
- 'hotfix/**'
- 'develop'
#- 'feature/update-opensearch'
- 'feature/update-opensearch'
paths:
- 'install/common/**'
- 'install/deb/**'
- 'install/rpm/**'
- '.github/workflows/build_packages.yml'
workflow_dispatch:
inputs:
Expand Down Expand Up @@ -59,7 +62,8 @@ jobs:
- name: Determine changed
id: changes
run: |
echo "build_all=$(git diff --name-only HEAD~1 HEAD | grep -qE 'build_packages.yml' && echo true)" >> $GITHUB_OUTPUT
CHANGED_FILES=$(git diff --name-only HEAD~1 HEAD)
echo "build_all=$(echo "$CHANGED_FILES" | grep -qE '^.github/workflows/build_packages.yml' && echo true || echo false)" >> $GITHUB_OUTPUT
- name: Set matrix
id: set-matrix
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-oci-docker-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
- 'feature/update-opensearch'
paths:
- 'install/OneClickInstall/install-Docker.sh'
- 'install/docker/*.yml'
- 'install/docker/*'
workflow_dispatch:
inputs:
offline:
Expand Down
2 changes: 1 addition & 1 deletion install/common/product-configuration
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,7 @@ setup_openresty(){
echo "OK"
}

# Function gets Document server host and port using regular expression, we need it to check connection
## Function gets Document server host and port using regular expression, we need it to check connection
parse_external_docs_url () {
if [[ $DOCUMENT_SERVER_URL_EXTERNAL =~ ^(https?://)?([^:/]+)(:([0-9]+))?(/.*)?$ ]]; then
DOCUMENT_SERVER_PORT="${BASH_REMATCH[4]:-80}"
Expand Down
2 changes: 1 addition & 1 deletion install/docker/.env
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
UID="root"
GID="root"

# images version ##
# images version #
DOCKER_TAG=latest
MYSQL_VERSION=8.3.0
PROXY_VERSION=latest
Expand Down

0 comments on commit 37c35a1

Please sign in to comment.