Skip to content

Commit

Permalink
fix(chart/opensearch): metricsPort and plugins usage info in values.yaml
Browse files Browse the repository at this point in the history
Signed-off-by: Toni Tauro <[email protected]>
  • Loading branch information
eyenx committed Sep 10, 2024
1 parent 10646b1 commit 76017aa
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 4 deletions.
14 changes: 12 additions & 2 deletions charts/opensearch/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
### Security
---
## [2.24.1]
### Added
### Changed
### Deprecated
### Removed
### Fixed
- `metricsPort` used and explanation about plugins to be used for metrics
### Security
---
## [2.24.0]
### Added
- Ability to add additional `labels` to `serviceMonitor`
Expand Down Expand Up @@ -476,8 +485,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
### Security

[Unreleased]: https://github.com/opensearch-project/helm-charts/compare/opensearch-2.24.0...HEAD
[2.24.0]: https://github.com/opensearch-project/helm-charts/compare/opensearch-2.23.1...opensearch-2.24.0
[Unreleased]: https://github.com/opensearch-project/helm-charts/compare/opensearch-2.24.1...HEAD
[2.24.1]: https://github.com/opensearch-project/helm-charts/compare/opensearch-2.24.0...opensearch-2.24.1
[2.24.0]: https://github.com/opensearch-project/helm-charts/compare/opensearch-2.23.2...opensearch-2.24.0
[2.23.2]: https://github.com/opensearch-project/helm-charts/compare/opensearch-2.23.1...opensearch-2.23.2
[2.23.1]: https://github.com/opensearch-project/helm-charts/compare/opensearch-2.23.0...opensearch-2.23.1
[2.23.0]: https://github.com/opensearch-project/helm-charts/compare/opensearch-2.22.1...opensearch-2.23.0
Expand Down
2 changes: 1 addition & 1 deletion charts/opensearch/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 2.24.0
version: 2.24.1

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
8 changes: 7 additions & 1 deletion charts/opensearch/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ enableServiceLinks: true
protocol: https
httpPort: 9200
transportPort: 9300
metricsPort: 9600
metricsPort: 9200
httpHostPort: ""
transportHostPort: ""

Expand Down Expand Up @@ -532,6 +532,12 @@ extraObjects: []

# ServiceMonitor Configuration for Prometheus
# Enabling this option will create a ServiceMonitor resource that allows Prometheus to scrape metrics from the OpenSearch service.
# This only creates the serviceMonitor, to actually have metrics Make sure to install the prometheus-exporter plugin needed for

Check failure on line 535 in charts/opensearch/values.yaml

View workflow job for this annotation

GitHub Actions / lint-test (1.19.16)

[trailing-spaces] trailing spaces

Check failure on line 535 in charts/opensearch/values.yaml

View workflow job for this annotation

GitHub Actions / lint-test (1.21.14)

[trailing-spaces] trailing spaces

Check failure on line 535 in charts/opensearch/values.yaml

View workflow job for this annotation

GitHub Actions / lint-test (1.22.9)

[trailing-spaces] trailing spaces

Check failure on line 535 in charts/opensearch/values.yaml

View workflow job for this annotation

GitHub Actions / lint-test (1.23.12)

[trailing-spaces] trailing spaces

Check failure on line 535 in charts/opensearch/values.yaml

View workflow job for this annotation

GitHub Actions / lint-test (1.24.7)

[trailing-spaces] trailing spaces

Check failure on line 535 in charts/opensearch/values.yaml

View workflow job for this annotation

GitHub Actions / lint-test (1.25.2)

[trailing-spaces] trailing spaces
# serving metrics over the `.Values.plugins` value:
# plugins:
# enabled: true
# installList:
# - https://github.com/aiven/prometheus-exporter-plugin-for-opensearch/releases/download/x.x.x.x/prometheus-exporter-x.x.x.x.zip
serviceMonitor:
# Set to true to enable the ServiceMonitor resource
enabled: false
Expand Down

0 comments on commit 76017aa

Please sign in to comment.