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
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.42
version: 0.0.43
description: A Helm chart for the OpenSearch operator
type: application
maintainers:
Expand Down
2 changes: 1 addition & 1 deletion opensearch/chart/templates/dashboard-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
apiVersion: v1
kind: Service
metadata:
name: {{ .Values.cluster.cluster.name | default .Release.Name }}-dashboards-external
name: {{ .Values.cluster.cluster.name | default .Release.Name }}
namespace: {{ .Release.Namespace }}
annotations:
greenhouse.sap/expose: "true"
Expand Down
4 changes: 3 additions & 1 deletion opensearch/chart/templates/siem-dashboard-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@
apiVersion: v1
kind: Service
metadata:
name: {{ .Values.siem.cluster.name | default (printf "%s-siem" .Release.Name) }}-dashboards-external
name: {{ .Values.siem.cluster.name | default (printf "%s-siem" .Release.Name) }}
namespace: {{ .Release.Namespace }}
annotations:
greenhouse.sap/expose: "true"
labels:
{{- include "opensearch.labels" . | nindent 4 }}
opensearch.cluster.dashboards: {{ .Values.siem.cluster.name | default (printf "%s-siem" .Release.Name) }}
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.42
version: 0.0.43
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.42
version: 0.0.43
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