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 charts/graylog/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: graylog
home: https://www.graylog.org
version: 2.3.19
version: 2.4.0
appVersion: 6.3.3
description: Graylog is the centralized log management solution built to open
standards for capturing, storing, and enabling real-time analysis of terabytes
Expand Down
2 changes: 1 addition & 1 deletion charts/graylog/templates/master-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ spec:
selector:
app.kubernetes.io/name: {{ template "graylog.name" . }}
app.kubernetes.io/instance: "{{ .Release.Name }}"
graylog-role: "master"
statefulset.kubernetes.io/pod-name: {{ template "graylog.fullname" . }}-0
type: "{{ .Values.graylog.service.type }}"
{{- if eq "LoadBalancer" .Values.graylog.service.master.type }}
{{- if .Values.graylog.service.master.loadBalancerIP }}
Expand Down
14 changes: 14 additions & 0 deletions charts/graylog/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -606,7 +606,11 @@ opensearch:
value: "true"
- name: OPENSEARCH_INITIAL_ADMIN_PASSWORD
value: "Graylog@2024" # Strong password meeting requirements: uppercase, lowercase, number, special char, >8 chars
## Set number of OpenSearch nodes
##
replicas: 3
## Set default resource very low. This help reduce resources usage on GitHub Action when performing chart-testing.
##
opensearchJavaOpts: "-Xmx128M -Xms128M"
resources:
requests:
Expand All @@ -621,7 +625,17 @@ opensearch:
# storage: 30Gi # default 30Gi

# Specify Mongodb settings. Ignore this section if you install MongoDB manually.
#
mongodb:
## Default Bitnami MongoDB image in the chart does not support Arm64 architecture.
## Uncomment the following section `image` and `global.security.allowInsecureImages` to use another Bitnami MongoDB image.
##
# image:
# repository: bitnamisecure/mongodb
# tag: latest
# global:
# security:
# allowInsecureImages: true
architecture: "replicaset"
useStatefulSet: true
replicaCount: 1
Expand Down
Loading