-
Notifications
You must be signed in to change notification settings - Fork 240
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
fix(chart/opensearch-dashboards): mapper_parsing_exception - tried to parse field [app] as object, but found a concrete value #629
base: main
Are you sure you want to change the base?
Conversation
@ainthapanya-sqc Where's the original chart you used for Fluent Bit to reproduce this? There's lots that float around, Also, that mapping parser exceptions should be coming from Opensearch API downstream to Fluent when it attempts to bulk push the docs. Are you sure your mapping on the index aren't misconfigured? As the implication is that an index mapping is wrong on your index (Object, not String/Keyword for example.) |
@DandyDeveloper I had used Fluent Bit Helm chart 0.48.3.
Pretty sure, the field There are other apps/deployments which are using appropriate labels and is working out of the box. As a workaround, I needed to manually modify Additionally, this may help with some alignment with the common/recommended labels. |
@ainthapanya-sqc Okay, sorry I see the problem you're having. It's because in our manifests, we're using We should actually use the existing
Can you update to use this and make sure the DCO stuff is done? Then I'll approve. |
@ainthapanya-sqc Need to sort out the DCO related checks, but the code itself LGTM! |
2c64ff2
to
db792cc
Compare
… plugin conflicts (opensearch-project#618) * Remove opensearch.yml config in Values.yaml to avoid security plugin conflicts Signed-off-by: LemonDouble <[email protected]> * bump version Signed-off-by: LemonDouble <[email protected]> * add space for lint Signed-off-by: LemonDouble <[email protected]> * fix : Update CHANGELOG.md Co-authored-by: Craig Perkins <[email protected]> Signed-off-by: LemonDouble <[email protected]> * fix : comment ci's opensearch.yml to fix ci pipeline Signed-off-by: LemonDouble <[email protected]> * fix : update CHANGELOG.md Co-authored-by: Craig Perkins <[email protected]> Signed-off-by: LemonDouble <[email protected]> * fix : comment only security plugin configs Signed-off-by: LemonDouble <[email protected]> --------- Signed-off-by: LemonDouble <[email protected]> Signed-off-by: LemonDouble <[email protected]> Co-authored-by: Craig Perkins <[email protected]> Signed-off-by: ainthapanya-sqc <[email protected]>
Signed-off-by: ainthapanya-sqc <[email protected]>
Signed-off-by: ainthapanya-sqc <[email protected]>
Signed-off-by: ainthapanya-sqc <[email protected]> Signed-off-by: ainthapanya-sqc <[email protected]>
Signed-off-by: ainthapanya-sqc <[email protected]> Signed-off-by: ainthapanya-sqc <[email protected]>
Signed-off-by: ainthapanya-sqc <[email protected]> Signed-off-by: ainthapanya-sqc <[email protected]>
Signed-off-by: ainthapanya-sqc <[email protected]> Signed-off-by: ainthapanya-sqc <[email protected]>
Signed-off-by: ainthapanya-sqc <[email protected]>
db792cc
to
bbf3014
Compare
Signed-off-by: ainthapanya-sqc <[email protected]>
@DandyDeveloper may need your help in approving the workflow. |
@ainthapanya-sqc Triggered them. I'll keep an eye out. |
@peterzhuamazon We're good to merge this whenever you're happy. |
Description
This pull request addresses an issue where using the app label causes conflicts with object mapping in OpenSearch Dashboards. To resolve this, the
app
label has been replaced with theapp.kubernetes.io/name
label across the codebase.Issues Resolved
Check List
For any changes to files within Helm chart directories:
CHANGELOG.md
updated to reflect changeBy submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.