You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The input manifest contains version (3.0.0) and a qualifier (alpha1) as two separate values.
However, the build manifest (the interim manifest) generated after building all the components as well as the bundle or distribution manifest, generated assembling the components contains a single version key with qualifier already attached 3.0.0-alpha1
This discrepancy lead to some notable side effects. All the post build and test workflows/ jenkins libraries use version as the key for parsing data from opensearch-metrics cluster. See sample queries. However, data is indexed using build or dist manifest (in this case version=3.0.0-alpha1).
In order to retrieve the data, the version is retrieved from input manifest which is considered as the source of the truth. Because of this mismatch, it is now trying to run queries with 3.0.0 and returning no data. Example: https://build.ci.opensearch.org/job/integ-test-notification/3496/console
To reproduce
See the input manifest and compare with dist and build manifest.
Expected behavior
The version across all the manifests should be same. Either pick 3.0.0 with qualifier as alpha1 OR pick version: 3.0.0-alpha1
Accordingly modify the code base to accommodate this changes.
Screenshots
If applicable, add screenshots to help explain your problem.
Host / Environment
No response
Additional context
No response
Relevant log output
The text was updated successfully, but these errors were encountered:
Describe the bug
The input manifest contains version (3.0.0) and a qualifier (alpha1) as two separate values.
However, the build manifest (the interim manifest) generated after building all the components as well as the bundle or distribution manifest, generated assembling the components contains a single version key with qualifier already attached
3.0.0-alpha1
This discrepancy lead to some notable side effects. All the post build and test workflows/ jenkins libraries use version as the key for parsing data from opensearch-metrics cluster. See sample queries. However, data is indexed using build or dist manifest (in this case version=3.0.0-alpha1).
In order to retrieve the data, the version is retrieved from input manifest which is considered as the source of the truth. Because of this mismatch, it is now trying to run queries with
3.0.0
and returning no data. Example: https://build.ci.opensearch.org/job/integ-test-notification/3496/consoleTo reproduce
See the input manifest and compare with dist and build manifest.
Expected behavior
The version across all the manifests should be same. Either pick
3.0.0
with qualifier asalpha1
OR pick version:3.0.0-alpha1
Accordingly modify the code base to accommodate this changes.
Screenshots
If applicable, add screenshots to help explain your problem.
Host / Environment
No response
Additional context
No response
Relevant log output
The text was updated successfully, but these errors were encountered: