Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 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
11 changes: 5 additions & 6 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 @@ -413,11 +413,6 @@ graylog:
##
rootUsername: "admin"

## Graylog root password
## Defaults to a random 16-character alphanumeric string if not set
##
# rootPassword: ""

## Graylog root email
##
rootEmail: ""
Expand Down Expand Up @@ -447,6 +442,8 @@ graylog:
uriSecretName: ""
uriSecretKey: ""
uriSSL: false
# OpenSearch authentication
username: "admin"

mongodb:
## MongoDB connection string
Expand Down Expand Up @@ -594,6 +591,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