diff --git a/.github/ISSUE_TEMPLATE/early-pre-release.md b/.github/ISSUE_TEMPLATE/early-pre-release.md index b0171cdfe..31afef18b 100644 --- a/.github/ISSUE_TEMPLATE/early-pre-release.md +++ b/.github/ISSUE_TEMPLATE/early-pre-release.md @@ -56,6 +56,7 @@ Part of . - [ ] [Create issue from template: update-product-nifi.md](https://github.com/stackabletech/docker-images/issues/new?template=update-product-nifi.md) - [ ] [Create issue from template: update-product-opa.md](https://github.com/stackabletech/docker-images/issues/new?template=update-product-opa.md) - [ ] [Create issue from template: update-product-opensearch.md](https://github.com/stackabletech/docker-images/issues/new?template=update-product-opensearch.md) +- [ ] [Create issue from template: update-product-opensearch-dashboards.md](https://github.com/stackabletech/docker-images/issues/new?template=update-product-opensearch-dashboards.md) - [ ] [Create issue from template: update-product-spark.md](https://github.com/stackabletech/docker-images/issues/new?template=update-product-spark.md) - [ ] [Create issue from template: update-product-superset.md](https://github.com/stackabletech/docker-images/issues/new?template=update-product-superset.md) - [ ] [Create issue from template: update-product-trino.md](https://github.com/stackabletech/docker-images/issues/new?template=update-product-trino.md) diff --git a/.github/ISSUE_TEMPLATE/update-product-opensearch-dashboards.md b/.github/ISSUE_TEMPLATE/update-product-opensearch-dashboards.md new file mode 100644 index 000000000..cfe699ebb --- /dev/null +++ b/.github/ISSUE_TEMPLATE/update-product-opensearch-dashboards.md @@ -0,0 +1,76 @@ +--- +name: Update OpenSearch Dashboards +about: >- + This template contains instructions specific to updating this product and/or + container image(s). +title: >- + chore(opensearch-dashboards): Update major/minor|patch versions for YY.M.X +labels: [] +# Currently, projects cannot be assigned via front-matter. +projects: ['stackabletech/10'] +assignees: '' +--- + +Part of . + + +- Add: `x.x.x` +- Remove: `y.y.y` + +> [!TIP] +> Please add the `scheduled-for/YY.M.X` label, and add to the [Stackable Engineering][1] project. +> +> [1]: https://github.com/orgs/stackabletech/projects/10 + +## Update tasks + +- [ ] Update `boil-config.toml` to reflect the agreed upon versions in the spreadsheet (including the removal of old versions). +- [ ] Update other dependencies if applicable (eg: security-plugin, etc). +- [ ] Check other operators (getting_started / kuttl / supported-versions) for usage of the versions. Add the PR(s) to the list below. +- [ ] Update the version in demos. Add the PR(s) to the list below. + +## Related Pull Requests + +> [!TIP] +> Delete any items that do not apply so that all applicable items can be checked. +> For example, if you add release notes to the documentation repository, you do not need the latter two criteria. + +- _Link to the docker-images PR (product update)_ +- _Link to the operator PR (getting_started / kuttl / supported-versions)_ +- _Link to any other operator PRs (getting_started / kuttl)_ +- _Link to demo PR (raise against the `main` branch)_ +- _Link to the Release Notes PR in the documentation repo (if not a comment below)_ + +## Acceptance + +> [!TIP] +> This list should be completed by the assignee(s), once respective PRs have been merged. Once all items have been +> checked, the issue can be moved into _Development: Done_. + +- [ ] Can build image (either locally, or in CI) +- [ ] Kuttl smoke tests passes (either locally, or in CI) +- [ ] Release notes added to documentation and linked as a PR above +- [ ] Release notes written in a comment below +- [ ] Applicable `release-note` label added to this issue + +
+Testing instructions + +```shell +# Where x.y.z is the new version added in this PR +boil build opensearch-dashboards=x.y.z --strip-architecture --load + +kind load docker-image oci.stackable.tech/sdp/opensearch-dashboards:x.y.z-stackable0.0.0-dev + +# Change directory into the opensearch repository and update the +# product version in tests/test-definition.yaml (once there is an integration test for opensearch-dashboards) +./scripts/run-tests --test-suite smoke-latest # or similar +``` + +
+ +_Please consider updating this template if these instructions are wrong, or +could be made clearer._ diff --git a/.github/workflows/build_opensearch_dashboards.yaml b/.github/workflows/build_opensearch_dashboards.yaml new file mode 100644 index 000000000..392b6f340 --- /dev/null +++ b/.github/workflows/build_opensearch_dashboards.yaml @@ -0,0 +1,36 @@ +--- +name: Build OpenSearch Dashboards +run-name: | + Build OpenSearch Dashboards (attempt #${{ github.run_attempt }}) + +on: + workflow_dispatch: + schedule: + - cron: '0 0 2/2 * *' # https://crontab.guru/#0_0_2/2_*_* + push: + branches: [main] + tags: + - "[0-9][0-9].[0-9]+.[0-9]+" + - "[0-9][0-9].[0-9]+.[0-9]+-rc[0-9]+" + paths: + # To check dependencies, run this ( you will need to consider transitive dependencies) + # cargo boil build PRODUCT -d + - opensearch-dashboards/** + - vector/** + - stackable-base/** + - stackable-devel/** + - .github/actions/** + - .github/workflows/build_opensearch_dashboards.yaml + - .github/workflows/reusable_build_image.yaml + +jobs: + build_image: + name: Reusable Workflow + uses: ./.github/workflows/reusable_build_image.yaml + secrets: + harbor-robot-secret: ${{ secrets.HARBOR_ROBOT_SDP_GITHUB_ACTION_BUILD_SECRET }} + slack-token: ${{ secrets.SLACK_CONTAINER_IMAGE_TOKEN }} + with: + product-name: opensearch-dashboards + sdp-version: ${{ github.ref_type == 'tag' && github.ref_name || '0.0.0-dev' }} + registry-namespace: sdp diff --git a/.github/workflows/preflight.yaml b/.github/workflows/preflight.yaml index 3c3b5e97a..6821739f0 100644 --- a/.github/workflows/preflight.yaml +++ b/.github/workflows/preflight.yaml @@ -67,6 +67,7 @@ jobs: - omid - opa - opensearch + - opensearch-dashboards - spark-k8s - superset - trino diff --git a/.scripts/update_feature_tracker_db.sh b/.scripts/update_feature_tracker_db.sh index 56ae3a446..1fc52be4f 100755 --- a/.scripts/update_feature_tracker_db.sh +++ b/.scripts/update_feature_tracker_db.sh @@ -34,6 +34,7 @@ PRODUCT_CODE_NAMES=( kafka nifi opensearch + opensearch-dashboards spark-k8s superset trino diff --git a/CHANGELOG.md b/CHANGELOG.md index 640cecd2f..523db2075 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ All notable changes to this project will be documented in this file. - opensearch: Use build-repo.stackable.tech instead of Maven Central ([#1222]). - opensearch: Add the `opensearch-prometheus-exporter` plugin to the image ([#1223]). - opensearch: Replace the demo configuration of the OpenSearch Security plugin with a minimal one ([#1228]). +- opensearch-dashboards: Add an image for Opensearch Dashboards with version `3.1.0` ([#1248]). - nifi: Backport NIFI-14848 to NiFi ([#1225]). - stackable-base: Add cert-tools ([#1247]). - kafka: Add jackson xml dataformat for Kafka 4.0.0 ([#1262]). @@ -68,6 +69,7 @@ All notable changes to this project will be documented in this file. [#1228]: https://github.com/stackabletech/docker-images/pull/1228 [#1230]: https://github.com/stackabletech/docker-images/pull/1230 [#1247]: https://github.com/stackabletech/docker-images/pull/1247 +[#1248]: https://github.com/stackabletech/docker-images/pull/1248 [#1253]: https://github.com/stackabletech/docker-images/pull/1253 [#1258]: https://github.com/stackabletech/docker-images/pull/1258 [#1262]: https://github.com/stackabletech/docker-images/pull/1262 diff --git a/README.md b/README.md index dc8bc3857..c94304772 100644 --- a/README.md +++ b/README.md @@ -8,9 +8,10 @@ This repository contains Dockerfiles and scripts to build base images for use wi | [![Build Airflow]][build_airflow.yaml] | [![Build Druid]][build_druid.yaml] | [![Build Hadoop]][build_hadoop.yaml] | [![Build HBase]][build_hbase.yaml] | | [![Build Hive]][build_hive.yaml] | [![Build Java Base]][build_java-base.yaml] | [![Build Java Development]][build_java-devel.yaml] | [![Build Kafka Testing Tools]][build_kafka-testing-tools.yaml] | | [![Build Kafka]][build_kafka.yaml] | [![Build Krb5]][build_krb5.yaml] | [![Build NiFi]][build_nifi.yaml] | [![Build Omid]][build_omid.yaml] | -| [![Build OPA]][build_opa.yaml] | [![Build OpenSearch]][build_opensearch.yaml] | [![Build Spark Connect Client]][build_spark-connect-client.yaml] | [![Build Spark K8s]][build_spark-k8s.yaml] | -| [![Build Stackable Base]][build_stackable-base.yaml] | [![Build Superset]][build_superset.yaml] | [![Build Testing Tools]][build_testing-tools.yaml] | [![Build Tools]][build_tools.yaml] | -| [![Build Trino CLI]][build_trino-cli.yaml] | [![Build Trino]][build_trino.yaml] | [![Build Vector]][build_vector.yaml] | [![Build ZooKeeper]][build_zookeeper.yaml] | +| [![Build OPA]][build_opa.yaml] | [![Build OpenSearch]][build_opensearch.yaml] | [![Build OpenSearch Dashboards]][build_opensearch_dashboards.yaml] | [![Build Spark Connect Client]][build_spark-connect-client.yaml] | +| [![Build Spark K8s]][build_spark-k8s.yaml] | [![Build Stackable Base]][build_stackable-base.yaml] | [![Build Superset]][build_superset.yaml] | [![Build Testing Tools]][build_testing-tools.yaml] | +| [![Build Tools]][build_tools.yaml] | [![Build Trino CLI]][build_trino-cli.yaml] | [![Build Trino]][build_trino.yaml] | [![Build Vector]][build_vector.yaml] | +| [![Build ZooKeeper]][build_zookeeper.yaml] | | | | ## Prerequisites @@ -79,6 +80,8 @@ preflight check container oci.stackable.tech/sdp/:-stackable" or with a notice of your own that is not confusingly similar to the notice in this License; and (iii) You may not claim that your original works are open source software unless your Modified License has been approved by Open Source Initiative (OSI) and You comply with its license review and certification process. diff --git a/opensearch-dashboards/ml-commons-dashboards/Dockerfile b/opensearch-dashboards/ml-commons-dashboards/Dockerfile new file mode 100644 index 000000000..6757eaca6 --- /dev/null +++ b/opensearch-dashboards/ml-commons-dashboards/Dockerfile @@ -0,0 +1,16 @@ +# syntax=docker/dockerfile:1.16.0@sha256:e2dd261f92e4b763d789984f6eab84be66ab4f5f08052316d8eb8f173593acf7 +# check=error=true + +FROM local-image/stackable-devel + +ARG PRODUCT_VERSION +ARG STACKABLE_USER_UID + +WORKDIR /stackable + +COPY --chown=${STACKABLE_USER_UID}:0 opensearch-dashboards/ml-commons-dashboards/stackable/patches/patchable.toml /stackable/src/opensearch-dashboards/ml-commons-dashboards/stackable/patches/patchable.toml +COPY --chown=${STACKABLE_USER_UID}:0 opensearch-dashboards/ml-commons-dashboards/stackable/patches/${PRODUCT_VERSION} /stackable/src/opensearch-dashboards/ml-commons-dashboards/stackable/patches/${PRODUCT_VERSION} + +USER ${STACKABLE_USER_UID} + +RUN /stackable/patchable --images-repo-root=src checkout opensearch-dashboards/ml-commons-dashboards ${PRODUCT_VERSION} diff --git a/opensearch-dashboards/ml-commons-dashboards/boil-config.toml b/opensearch-dashboards/ml-commons-dashboards/boil-config.toml new file mode 100644 index 000000000..e29ea1010 --- /dev/null +++ b/opensearch-dashboards/ml-commons-dashboards/boil-config.toml @@ -0,0 +1,2 @@ +[versions."3.1.0.0".local-images] +stackable-devel = "1.0.0" diff --git a/opensearch-dashboards/ml-commons-dashboards/stackable/patches/3.1.0.0/patchable.toml b/opensearch-dashboards/ml-commons-dashboards/stackable/patches/3.1.0.0/patchable.toml new file mode 100644 index 000000000..165bcd132 --- /dev/null +++ b/opensearch-dashboards/ml-commons-dashboards/stackable/patches/3.1.0.0/patchable.toml @@ -0,0 +1,2 @@ +mirror = "https://github.com/stackabletech/ml-commons-dashboards" +base = "43592e0442c3f0dedbb370231905713381487b86" diff --git a/opensearch-dashboards/ml-commons-dashboards/stackable/patches/patchable.toml b/opensearch-dashboards/ml-commons-dashboards/stackable/patches/patchable.toml new file mode 100644 index 000000000..61d4542d0 --- /dev/null +++ b/opensearch-dashboards/ml-commons-dashboards/stackable/patches/patchable.toml @@ -0,0 +1,2 @@ +upstream = "https://github.com/opensearch-project/ml-commons-dashboards" +default-mirror = "https://github.com/stackabletech/ml-commons-dashboards" diff --git a/opensearch-dashboards/opensearch-build/Dockerfile b/opensearch-dashboards/opensearch-build/Dockerfile new file mode 100644 index 000000000..33dfc3f3e --- /dev/null +++ b/opensearch-dashboards/opensearch-build/Dockerfile @@ -0,0 +1,20 @@ +# syntax=docker/dockerfile:1.16.0@sha256:e2dd261f92e4b763d789984f6eab84be66ab4f5f08052316d8eb8f173593acf7 +# check=error=true + +FROM local-image/stackable-devel AS opensearch-build + +ARG PRODUCT_VERSION +ARG STACKABLE_USER_UID + +WORKDIR /stackable + +COPY --chown=${STACKABLE_USER_UID}:0 opensearch-dashboards/opensearch-build/stackable/patches/patchable.toml /stackable/src/opensearch-dashboards/opensearch-build/stackable/patches/patchable.toml +COPY --chown=${STACKABLE_USER_UID}:0 opensearch-dashboards/opensearch-build/stackable/patches/${PRODUCT_VERSION} /stackable/src/opensearch-dashboards/opensearch-build/stackable/patches/${PRODUCT_VERSION} + +USER ${STACKABLE_USER_UID} + +RUN < +Date: Tue, 9 Sep 2025 16:41:31 +0200 +Subject: set correct OPENSEARCH_DASHBOARDS_HOME in docker entrypoint + +--- + .../opensearch-dashboards-docker-entrypoint-3.x.sh | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/docker/release/config/opensearch-dashboards/opensearch-dashboards-docker-entrypoint-3.x.sh b/docker/release/config/opensearch-dashboards/opensearch-dashboards-docker-entrypoint-3.x.sh +index 055354ba..33d98353 100755 +--- a/docker/release/config/opensearch-dashboards/opensearch-dashboards-docker-entrypoint-3.x.sh ++++ b/docker/release/config/opensearch-dashboards/opensearch-dashboards-docker-entrypoint-3.x.sh +@@ -16,7 +16,7 @@ + # --opensearch.startupTimeout=60 + + # Setup Home Directory +-export OPENSEARCH_DASHBOARDS_HOME=/usr/share/opensearch-dashboards ++export OPENSEARCH_DASHBOARDS_HOME=/stackable/opensearch-dashboards + + opensearch_dashboards_vars=( + console.enabled diff --git a/opensearch-dashboards/opensearch-build/stackable/patches/3.1.0/patchable.toml b/opensearch-dashboards/opensearch-build/stackable/patches/3.1.0/patchable.toml new file mode 100644 index 000000000..86310b870 --- /dev/null +++ b/opensearch-dashboards/opensearch-build/stackable/patches/3.1.0/patchable.toml @@ -0,0 +1,2 @@ +mirror = "https://github.com/stackabletech/opensearch-build" +base = "c152d16bbe6b4501e3e2418be0f9f8b3dc07559f" diff --git a/opensearch-dashboards/opensearch-build/stackable/patches/patchable.toml b/opensearch-dashboards/opensearch-build/stackable/patches/patchable.toml new file mode 100644 index 000000000..430c25ade --- /dev/null +++ b/opensearch-dashboards/opensearch-build/stackable/patches/patchable.toml @@ -0,0 +1,2 @@ +upstream = "https://github.com/opensearch-project/opensearch-build" +default-mirror = "https://github.com/stackabletech/opensearch-build" diff --git a/opensearch-dashboards/query-insights-dashboards/Dockerfile b/opensearch-dashboards/query-insights-dashboards/Dockerfile new file mode 100644 index 000000000..aacbe1934 --- /dev/null +++ b/opensearch-dashboards/query-insights-dashboards/Dockerfile @@ -0,0 +1,16 @@ +# syntax=docker/dockerfile:1.16.0@sha256:e2dd261f92e4b763d789984f6eab84be66ab4f5f08052316d8eb8f173593acf7 +# check=error=true + +FROM local-image/stackable-devel + +ARG PRODUCT_VERSION +ARG STACKABLE_USER_UID + +WORKDIR /stackable + +COPY --chown=${STACKABLE_USER_UID}:0 opensearch-dashboards/query-insights-dashboards/stackable/patches/patchable.toml /stackable/src/opensearch-dashboards/query-insights-dashboards/stackable/patches/patchable.toml +COPY --chown=${STACKABLE_USER_UID}:0 opensearch-dashboards/query-insights-dashboards/stackable/patches/${PRODUCT_VERSION} /stackable/src/opensearch-dashboards/query-insights-dashboards/stackable/patches/${PRODUCT_VERSION} + +USER ${STACKABLE_USER_UID} + +RUN /stackable/patchable --images-repo-root=src checkout opensearch-dashboards/query-insights-dashboards ${PRODUCT_VERSION} diff --git a/opensearch-dashboards/query-insights-dashboards/boil-config.toml b/opensearch-dashboards/query-insights-dashboards/boil-config.toml new file mode 100644 index 000000000..e29ea1010 --- /dev/null +++ b/opensearch-dashboards/query-insights-dashboards/boil-config.toml @@ -0,0 +1,2 @@ +[versions."3.1.0.0".local-images] +stackable-devel = "1.0.0" diff --git a/opensearch-dashboards/query-insights-dashboards/stackable/patches/3.1.0.0/patchable.toml b/opensearch-dashboards/query-insights-dashboards/stackable/patches/3.1.0.0/patchable.toml new file mode 100644 index 000000000..7a536a457 --- /dev/null +++ b/opensearch-dashboards/query-insights-dashboards/stackable/patches/3.1.0.0/patchable.toml @@ -0,0 +1,2 @@ +mirror = "https://github.com/stackabletech/query-insights-dashboards" +base = "0cba3bfcba6de7816f07f759238eefb9cfa5b64c" diff --git a/opensearch-dashboards/query-insights-dashboards/stackable/patches/patchable.toml b/opensearch-dashboards/query-insights-dashboards/stackable/patches/patchable.toml new file mode 100644 index 000000000..d5cf7edc9 --- /dev/null +++ b/opensearch-dashboards/query-insights-dashboards/stackable/patches/patchable.toml @@ -0,0 +1,2 @@ +upstream = "https://github.com/opensearch-project/query-insights-dashboards" +default-mirror = "https://github.com/stackabletech/query-insights-dashboards" diff --git a/opensearch-dashboards/security-analytics-dashboards-plugin/Dockerfile b/opensearch-dashboards/security-analytics-dashboards-plugin/Dockerfile new file mode 100644 index 000000000..87c8d2675 --- /dev/null +++ b/opensearch-dashboards/security-analytics-dashboards-plugin/Dockerfile @@ -0,0 +1,16 @@ +# syntax=docker/dockerfile:1.16.0@sha256:e2dd261f92e4b763d789984f6eab84be66ab4f5f08052316d8eb8f173593acf7 +# check=error=true + +FROM local-image/stackable-devel + +ARG PRODUCT_VERSION +ARG STACKABLE_USER_UID + +WORKDIR /stackable + +COPY --chown=${STACKABLE_USER_UID}:0 opensearch-dashboards/security-analytics-dashboards-plugin/stackable/patches/patchable.toml /stackable/src/opensearch-dashboards/security-analytics-dashboards-plugin/stackable/patches/patchable.toml +COPY --chown=${STACKABLE_USER_UID}:0 opensearch-dashboards/security-analytics-dashboards-plugin/stackable/patches/${PRODUCT_VERSION} /stackable/src/opensearch-dashboards/security-analytics-dashboards-plugin/stackable/patches/${PRODUCT_VERSION} + +USER ${STACKABLE_USER_UID} + +RUN /stackable/patchable --images-repo-root=src checkout opensearch-dashboards/security-analytics-dashboards-plugin ${PRODUCT_VERSION} diff --git a/opensearch-dashboards/security-analytics-dashboards-plugin/boil-config.toml b/opensearch-dashboards/security-analytics-dashboards-plugin/boil-config.toml new file mode 100644 index 000000000..e29ea1010 --- /dev/null +++ b/opensearch-dashboards/security-analytics-dashboards-plugin/boil-config.toml @@ -0,0 +1,2 @@ +[versions."3.1.0.0".local-images] +stackable-devel = "1.0.0" diff --git a/opensearch-dashboards/security-analytics-dashboards-plugin/stackable/patches/3.1.0.0/patchable.toml b/opensearch-dashboards/security-analytics-dashboards-plugin/stackable/patches/3.1.0.0/patchable.toml new file mode 100644 index 000000000..562da4e44 --- /dev/null +++ b/opensearch-dashboards/security-analytics-dashboards-plugin/stackable/patches/3.1.0.0/patchable.toml @@ -0,0 +1,2 @@ +mirror = "https://github.com/stackabletech/security-analytics-dashboards-plugin" +base = "74a82de6f78e9273a3e3e30ddc4c58a629547ddb" diff --git a/opensearch-dashboards/security-analytics-dashboards-plugin/stackable/patches/patchable.toml b/opensearch-dashboards/security-analytics-dashboards-plugin/stackable/patches/patchable.toml new file mode 100644 index 000000000..8aac3e162 --- /dev/null +++ b/opensearch-dashboards/security-analytics-dashboards-plugin/stackable/patches/patchable.toml @@ -0,0 +1,2 @@ +upstream = "https://github.com/opensearch-project/security-analytics-dashboards-plugin" +default-mirror = "https://github.com/stackabletech/security-analytics-dashboards-plugin" diff --git a/opensearch-dashboards/security-dashboards-plugin/Dockerfile b/opensearch-dashboards/security-dashboards-plugin/Dockerfile new file mode 100644 index 000000000..17f1b406a --- /dev/null +++ b/opensearch-dashboards/security-dashboards-plugin/Dockerfile @@ -0,0 +1,16 @@ +# syntax=docker/dockerfile:1.16.0@sha256:e2dd261f92e4b763d789984f6eab84be66ab4f5f08052316d8eb8f173593acf7 +# check=error=true + +FROM local-image/stackable-devel + +ARG PRODUCT_VERSION +ARG STACKABLE_USER_UID + +WORKDIR /stackable + +COPY --chown=${STACKABLE_USER_UID}:0 opensearch-dashboards/security-dashboards-plugin/stackable/patches/patchable.toml /stackable/src/opensearch-dashboards/security-dashboards-plugin/stackable/patches/patchable.toml +COPY --chown=${STACKABLE_USER_UID}:0 opensearch-dashboards/security-dashboards-plugin/stackable/patches/${PRODUCT_VERSION} /stackable/src/opensearch-dashboards/security-dashboards-plugin/stackable/patches/${PRODUCT_VERSION} + +USER ${STACKABLE_USER_UID} + +RUN /stackable/patchable --images-repo-root=src checkout opensearch-dashboards/security-dashboards-plugin ${PRODUCT_VERSION} diff --git a/opensearch-dashboards/security-dashboards-plugin/boil-config.toml b/opensearch-dashboards/security-dashboards-plugin/boil-config.toml new file mode 100644 index 000000000..e29ea1010 --- /dev/null +++ b/opensearch-dashboards/security-dashboards-plugin/boil-config.toml @@ -0,0 +1,2 @@ +[versions."3.1.0.0".local-images] +stackable-devel = "1.0.0" diff --git a/opensearch-dashboards/security-dashboards-plugin/stackable/patches/3.1.0.0/patchable.toml b/opensearch-dashboards/security-dashboards-plugin/stackable/patches/3.1.0.0/patchable.toml new file mode 100644 index 000000000..5183d5a63 --- /dev/null +++ b/opensearch-dashboards/security-dashboards-plugin/stackable/patches/3.1.0.0/patchable.toml @@ -0,0 +1,2 @@ +mirror = "https://github.com/stackabletech/security-dashboards-plugin" +base = "6be08faa8a4b5dfb8842aa12cf745177cec28fbe" diff --git a/opensearch-dashboards/security-dashboards-plugin/stackable/patches/patchable.toml b/opensearch-dashboards/security-dashboards-plugin/stackable/patches/patchable.toml new file mode 100644 index 000000000..201667d26 --- /dev/null +++ b/opensearch-dashboards/security-dashboards-plugin/stackable/patches/patchable.toml @@ -0,0 +1,2 @@ +upstream = "https://github.com/opensearch-project/security-dashboards-plugin" +default-mirror = "https://github.com/stackabletech/security-dashboards-plugin" diff --git a/opensearch-dashboards/stackable/patches/3.1.0/patchable.toml b/opensearch-dashboards/stackable/patches/3.1.0/patchable.toml new file mode 100644 index 000000000..e44de0b5f --- /dev/null +++ b/opensearch-dashboards/stackable/patches/3.1.0/patchable.toml @@ -0,0 +1,2 @@ +mirror = "https://github.com/stackabletech/opensearch-dashboards" +base = "1feb86934e7f2d5fae58baebf1b98c5c0825bc3f" diff --git a/opensearch-dashboards/stackable/patches/patchable.toml b/opensearch-dashboards/stackable/patches/patchable.toml new file mode 100644 index 000000000..ef8850bee --- /dev/null +++ b/opensearch-dashboards/stackable/patches/patchable.toml @@ -0,0 +1,2 @@ +upstream = "https://github.com/opensearch-project/opensearch-dashboards" +default-mirror = "https://github.com/stackabletech/opensearch-dashboards"