Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump 3.0.0.0-alpha1 #450

Merged
merged 2 commits into from
Feb 25, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions .github/workflows/verify-binary-installation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: 'Install Dashboards with Plugin via Binary'

on: [push, pull_request]
env:
OPENSEARCH_VERSION: '3.0.0'
OPENSEARCH_VERSION: '3.0.0-alpha1'
CI: 1
# avoid warnings like "tput: No value for $TERM and no -T specified"
TERM: xterm
Expand All @@ -16,7 +16,7 @@ jobs:
os: [ubuntu-latest]
# TODO: add windows support when OSD core is stable on windows
runs-on: ${{ matrix.os }}
steps:
steps:
- name: Checkout Branch
uses: actions/checkout@v3

Expand Down Expand Up @@ -44,12 +44,13 @@ jobs:
install_zip: true

- name: Start the binary
run: |
run: |
nohup ./bin/opensearch-dashboards &
working-directory: ${{ steps.setup-dashboards.outputs.dashboards-binary-directory }}
shell: bash

- name: Health check
- name: Health check
run: |
timeout 300 bash -c 'while [[ "$(curl http://localhost:5601/api/status | jq -r '.status.overall.state')" != "green" ]]; do sleep 5; done'
shell: bash
shell: bash

15 changes: 4 additions & 11 deletions opensearch_dashboards.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"id": "assistantDashboards",
"version": "3.0.0.0",
"version": "3.0.0.0-alpha1",
"opensearchDashboardsVersion": "3.0.0",
"server": true,
"ui": true,
Expand All @@ -15,14 +15,7 @@
"savedObjects",
"uiActions"
],
"optionalPlugins": [
"dataSource",
"dataSourceManagement",
"usageCollection",
"queryEnhancements"
],
"optionalPlugins": ["dataSource", "dataSourceManagement", "usageCollection", "queryEnhancements"],
"requiredBundles": [],
"configPath": [
"assistant"
]
}
"configPath": ["assistant"]
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "assistant-dashboards",
"version": "3.0.0.0",
"version": "3.0.0.0-alpha1",
"main": "index.ts",
"license": "Apache-2.0",
"scripts": {
Expand Down
Loading