Skip to content

Commit 5ca26b3

Browse files
author
Thiago Loureiro
committed
Update Graylog chart version and dependencies; add OpenSearch authentication settings
1 parent 8610878 commit 5ca26b3

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

charts/graylog/Chart.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v2
22
name: graylog
33
home: https://www.graylog.org
4-
version: 2.3.12
4+
version: 2.3.13
55
appVersion: 6.2.3
66
description: Graylog is the centralized log management solution built to open
77
standards for capturing, storing, and enabling real-time analysis of terabytes
@@ -24,11 +24,11 @@ dependencies:
2424
- tags:
2525
- install-mongodb
2626
name: mongodb
27-
version: 13.6.6
27+
version: 16.5.21
2828
repository: https://charts.bitnami.com/bitnami
2929
- tags:
3030
- install-opensearch
3131
name: opensearch
32-
version: 2.8.0
32+
version: 2.34.0
3333
repository: https://opensearch-project.github.io/helm-charts
3434
type: application

charts/graylog/values.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -448,6 +448,11 @@ graylog:
448448
uriSecretKey: ""
449449
uriSSL: false
450450

451+
# OpenSearch authentication
452+
username: "admin"
453+
password: "{{ .Values.opensearch.adminPassword }}" # Strong password meeting requirements: uppercase, lowercase, number, special char, >8 chars
454+
455+
451456
mongodb:
452457
## MongoDB connection string
453458
## See https://docs.mongodb.com/manual/reference/connection-string/ for details
@@ -589,11 +594,15 @@ graylog:
589594

590595
opensearch:
591596
enabled: true
597+
# Define the OpenSearch admin password
598+
adminPassword: "Graylog@2025" # Strong password meeting requirements: uppercase, lowercase, number, special char, >8 chars
592599
extraEnvs:
593600
- name: plugins.security.ssl.http.enabled
594601
value: "false"
595602
- name: plugins.security.disabled
596603
value: "true"
604+
- name: OPENSEARCH_INITIAL_ADMIN_PASSWORD
605+
value: "{{ .Values.opensearch.adminPassword }}"
597606
## Set default resource very low. This help reduce resources usage on GitHub Action when performing chart-testing.
598607
opensearchJavaOpts: "-Xmx128M -Xms128M"
599608
resources:

0 commit comments

Comments
 (0)