Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions opensearch/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ This guide provides a quick and straightforward way to use **OpenSearch** as a G
| cluster.cluster.general.monitoring.enable | bool | `true` | Enable cluster monitoring |
| cluster.cluster.general.monitoring.labels | object | `{}` | ServiceMonitor labels |
| cluster.cluster.general.monitoring.monitoringUserSecret | string | `""` | Secret with 'username' and 'password' keys for monitoring user. You could also use OpenSearchUser CRD instead of setting it. |
| cluster.cluster.general.monitoring.pluginUrl | string | `"https://github.com/opensearch-project/opensearch-prometheus-exporter/releases/download/3.3.1.0/prometheus-exporter-3.3.1.0.zip"` | Custom URL for the monitoring plugin |
| cluster.cluster.general.monitoring.pluginUrl | string | `"https://github.com/opensearch-project/opensearch-prometheus-exporter/releases/download/3.3.2.0/prometheus-exporter-3.3.2.0.zip"` | Custom URL for the monitoring plugin |
| cluster.cluster.general.monitoring.scrapeInterval | string | `"30s"` | How often to scrape metrics |
| cluster.cluster.general.monitoring.tlsConfig | object | `{"insecureSkipVerify":true}` | Override the tlsConfig of the generated ServiceMonitor |
| cluster.cluster.general.pluginsList | list | `[]` | List of Opensearch plugins to install |
Expand Down Expand Up @@ -296,7 +296,7 @@ This guide provides a quick and straightforward way to use **OpenSearch** as a G
| siem.cluster.general.monitoring.enable | bool | `true` | Enable cluster monitoring |
| siem.cluster.general.monitoring.labels | object | `{}` | ServiceMonitor labels |
| siem.cluster.general.monitoring.monitoringUserSecret | string | `""` | Secret with 'username' and 'password' keys for monitoring user. You could also use OpenSearchUser CRD instead of setting it. |
| siem.cluster.general.monitoring.pluginUrl | string | `"https://github.com/opensearch-project/opensearch-prometheus-exporter/releases/download/3.3.1.0/prometheus-exporter-3.3.1.0.zip"` | Custom URL for the monitoring plugin |
| siem.cluster.general.monitoring.pluginUrl | string | `"https://github.com/opensearch-project/opensearch-prometheus-exporter/releases/download/3.3.2.0/prometheus-exporter-3.3.2.0.zip"` | Custom URL for the monitoring plugin |
| siem.cluster.general.monitoring.scrapeInterval | string | `"30s"` | How often to scrape metrics |
| siem.cluster.general.monitoring.tlsConfig | object | `{"insecureSkipVerify":true}` | Override the tlsConfig of the generated ServiceMonitor |
| siem.cluster.general.pluginsList | list | `[]` | List of Opensearch plugins to install |
Expand Down
2 changes: 1 addition & 1 deletion opensearch/chart/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

apiVersion: v2
name: opensearch
version: 0.0.38
version: 0.0.39
description: A Helm chart for the OpenSearch operator
type: application
maintainers:
Expand Down
4 changes: 2 additions & 2 deletions opensearch/chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ cluster:
monitoringUserSecret: ""

# -- Custom URL for the monitoring plugin
pluginUrl: "https://github.com/opensearch-project/opensearch-prometheus-exporter/releases/download/3.3.1.0/prometheus-exporter-3.3.1.0.zip"
pluginUrl: "https://github.com/opensearch-project/opensearch-prometheus-exporter/releases/download/3.3.2.0/prometheus-exporter-3.3.2.0.zip"

# -- How often to scrape metrics
scrapeInterval: 30s
Expand Down Expand Up @@ -869,7 +869,7 @@ siem:
monitoringUserSecret: ""

# -- Custom URL for the monitoring plugin
pluginUrl: "https://github.com/opensearch-project/opensearch-prometheus-exporter/releases/download/3.3.1.0/prometheus-exporter-3.3.1.0.zip"
pluginUrl: "https://github.com/opensearch-project/opensearch-prometheus-exporter/releases/download/3.3.2.0/prometheus-exporter-3.3.2.0.zip"

# -- How often to scrape metrics
scrapeInterval: 30s
Expand Down
4 changes: 2 additions & 2 deletions opensearch/plugindefinition.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ kind: PluginDefinition
metadata:
name: opensearch
spec:
version: 0.0.38
version: 0.0.39
displayName: OpenSearch
description: Creates and manages an OpenSearch environment with automated deployment, provisioning, and orchestration of clusters and dashboards using the OpenSearch Operator.
icon: 'https://raw.githubusercontent.com/cloudoperators/greenhouse-extensions/main/opensearch/logo.png'
helmChart:
name: opensearch
repository: oci://ghcr.io/cloudoperators/greenhouse-extensions/charts
version: 0.0.38
version: 0.0.39
options:
- name: cluster.cluster.general.monitoring.pluginUrl
description: "Defines a custom URL for the monitoring plugin. Leave blank to use the default monitoring configuration."
Expand Down
Loading