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
8 changes: 4 additions & 4 deletions charts/graylog/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apiVersion: v2
name: graylog
home: https://www.graylog.org
version: 2.3.11
appVersion: 6.2.2
version: 2.3.14
appVersion: 6.2.3
description: Graylog is the centralized log management solution built to open
standards for capturing, storing, and enabling real-time analysis of terabytes
of machine data.
Expand All @@ -24,11 +24,11 @@ dependencies:
- tags:
- install-mongodb
name: mongodb
version: 13.6.6
version: 16.5.21
repository: https://charts.bitnami.com/bitnami
- tags:
- install-opensearch
name: opensearch
version: 2.8.0
version: 2.34.0
repository: https://opensearch-project.github.io/helm-charts
type: application
12 changes: 10 additions & 2 deletions charts/graylog/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ graylog:
##
image:
repository: "graylog/graylog"
tag: "6.2.2"
tag: "6.2.3"
pullPolicy: "IfNotPresent"

## Graylog default Java option
Expand Down Expand Up @@ -203,7 +203,11 @@ graylog:
port: 9000
## Add additional ports for the service/statefulset to expose
##
ports: []
ports:
- name: gelf
port: 12201
targetPort: 12201
protocol: TCP

headless:
## Add suffix to headless service name
Expand Down Expand Up @@ -447,6 +451,8 @@ graylog:
uriSecretName: ""
uriSecretKey: ""
uriSSL: false
# OpenSearch authentication
username: "admin"

mongodb:
## MongoDB connection string
Expand Down Expand Up @@ -594,6 +600,8 @@ opensearch:
value: "false"
- name: plugins.security.disabled
value: "true"
- name: OPENSEARCH_INITIAL_ADMIN_PASSWORD
value: "Graylog@2024" # Strong password meeting requirements: uppercase, lowercase, number, special char, >8 chars
## Set default resource very low. This help reduce resources usage on GitHub Action when performing chart-testing.
opensearchJavaOpts: "-Xmx128M -Xms128M"
resources:
Expand Down
Loading