Skip to content

Commit d520514

Browse files
committed
address feedback on PR
1 parent ba21c9e commit d520514

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

opensearch/Dockerfile

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,14 @@ FROM local-image/java-devel AS opensearch-builder
77

88
ARG PRODUCT_VERSION
99
ARG RELEASE_VERSION
10+
ARG STACKABLE_USER_UID
11+
ARG TARGETARCH
12+
13+
# Local image versions
1014
ARG OPENSEARCH_SECURITY_PLUGIN_VERSION
1115
ARG OPENSEARCH_OPENSEARCH_PROMETHEUS_EXPORTER_VERSION
16+
17+
# External plugin versions
1218
ARG OPENSEARCH_ALERTING_PLUGIN_VERSION
1319
ARG OPENSEARCH_JOB_SCHEDULER_PLUGIN_VERSION
1420
ARG OPENSEARCH_ANOMALY_DETECTION_PLUGIN_VERSION
@@ -33,8 +39,7 @@ ARG OPENSEARCH_SQL_PLUGIN_VERSION
3339
ARG OPENSEARCH_SYSTEM_TEMPLATES_PLUGIN_VERSION
3440
ARG OPENSEARCH_UBI_PLUGIN_VERSION
3541
ARG QUERY_INSIGHTS_PLUGIN_VERSION
36-
ARG STACKABLE_USER_UID
37-
ARG TARGETARCH
42+
3843

3944
WORKDIR /stackable
4045

@@ -100,7 +105,7 @@ RUN <<EOF
100105
# The JDK from jdk-base is used instead.
101106
rm -r jdk
102107

103-
# Install common plugins that are also used in the official image.
108+
# Install common plugins that are also used in the official image. The order is influenced by dependencies between plugins.
104109
#
105110
# TODO: The LTR plugin is currently missing because an official release for OpenSearch 3.x versions is missing.
106111
# There are tags for 3.x versions in the git repo, so it can be built from source:

opensearch/boil-config.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,24 +6,23 @@ jdk-base = "21"
66

77
[versions."3.1.0".build-arguments]
88
"opensearch-alerting-plugin-version" = "3.1.0.0"
9+
"opensearch-job-scheduler-plugin-version" = "3.1.0.0"
910
"opensearch-anomaly-detection-plugin-version" = "3.1.0.0"
1011
"opensearch-asynchronous-search-plugin-version" = "3.1.0.0"
1112
"opensearch-cross-cluster-replication-plugin-version" = "3.1.0.0"
1213
"opensearch-custom-codecs-plugin-version" = "3.1.0.0"
1314
"opensearch-flow-framework-plugin-version" = "3.1.0.0"
1415
"opensearch-geospatial-plugin-version" = "3.1.0.0"
1516
"opensearch-index-management-plugin-version" = "3.1.0.0"
16-
"opensearch-job-scheduler-plugin-version" = "3.1.0.0"
1717
"opensearch-knn-plugin-version" = "3.1.0.0"
1818
"opensearch-ml-plugin-version" = "3.1.0.0"
1919
"opensearch-neural-search-plugin-version" = "3.1.0.0"
20-
"opensearch-notifications-plugin-version" = "3.1.0.0"
2120
"opensearch-notifications-core-plugin-version" = "3.1.0.0"
21+
"opensearch-notifications-plugin-version" = "3.1.0.0"
2222
"opensearch-observability-plugin-version" = "3.1.0.0"
2323
"opensearch-performance-analyzer-plugin-version" = "3.1.0.0"
2424
"opensearch-reports-scheduler-plugin-version" = "3.1.0.0"
2525
"opensearch-search-relevance-plugin-version" = "3.1.0.0"
26-
"opensearch-security-plugin-version" = "3.1.0.0"
2726
"opensearch-security-analytics-plugin-version" = "3.1.0.0"
2827
"opensearch-skills-plugin-version" = "3.1.0.0"
2928
"opensearch-sql-plugin-version" = "3.1.0.0"

0 commit comments

Comments
 (0)