Skip to content

Commit b271144

Browse files
authored
[UPGRADE] Log Monitoring Stack (OpenSearch/OSD 2.19.4, Fluent Bit 4.2.0) (#813)
1 parent 688dc51 commit b271144

File tree

3 files changed

+28
-7
lines changed

3 files changed

+28
-7
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
* **Overall**
44
* [CHANGE] Use with Kubernetes versions prior to 1.26 produce WARNING message
55
* [CHANGE] Drop support for OpenShift 4.12; the minimum supported version of OpenShift is now 4.14
6+
* **Logging**
7+
* [UPGRADE] OpenSearch and OpenSearch Dashboards upgraded from 2.19.3 to 2.19.4
8+
* [UPGRADE] OpenSearch Helm chart upgraded from 2.35.0 to 2.36.0
9+
* [UPGRADE] OpenSearch Dashboards Helm chart upgraded from 2.31.0 to 2.32.0
10+
* [UPGRADE] Fluent Bit upgraded from 4.0.8 to 4.2.0
11+
* [UPGRADE] Fluent Bit Helm chart upgraded from 0.52.0 to 0.54.0
12+
* [UPGRADE] Elasticsearch Exporer Helm chart upgraded from 6.7.2 to 7.0.0
13+
* [UPGRADE] OpenSearch Data Source Plugin to Grafana upgraded from 2.31.1 to 2.32.1
614

715

816
## Version 1.2.44 (18NOV2025)

component_versions.env

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,22 +17,22 @@ ES_EXPORTER_FULL_IMAGE="quay.io/prometheuscommunity/elasticsearch-exporter:v1.9.
1717
#Fluent Bit
1818
FLUENTBIT_HELM_CHART_REPO=fluent
1919
FLUENTBIT_HELM_CHART_NAME=fluent-bit
20-
FLUENTBIT_HELM_CHART_VERSION=0.52.0
21-
FB_FULL_IMAGE="cr.fluentbit.io/fluent/fluent-bit:4.0.8"
20+
FLUENTBIT_HELM_CHART_VERSION=0.54.0
21+
FB_FULL_IMAGE="cr.fluentbit.io/fluent/fluent-bit:4.2.0"
2222
FB_INITCONTAINER_FULL_IMAGE="docker.io/library/busybox:latest"
2323

2424
#OpenSearch
2525
OPENSEARCH_HELM_CHART_REPO=opensearch
2626
OPENSEARCH_HELM_CHART_NAME=opensearch
27-
OPENSEARCH_HELM_CHART_VERSION=2.35.0
28-
OS_FULL_IMAGE="docker.io/opensearchproject/opensearch:2.19.3"
27+
OPENSEARCH_HELM_CHART_VERSION=2.36.0
28+
OS_FULL_IMAGE="docker.io/opensearchproject/opensearch:2.19.4"
2929
OS_SYSCTL_FULL_IMAGE="docker.io/library/busybox:latest"
3030

3131
#OpenSearch Dashboards
3232
OSD_HELM_CHART_REPO=opensearch
3333
OSD_HELM_CHART_NAME=opensearch-dashboards
34-
OSD_HELM_CHART_VERSION=2.31.0
35-
OSD_FULL_IMAGE="docker.io/opensearchproject/opensearch-dashboards:2.19.3"
34+
OSD_HELM_CHART_VERSION=2.32.0
35+
OSD_FULL_IMAGE="docker.io/opensearchproject/opensearch-dashboards:2.19.4"
3636

3737
#Grafana (when deployed on OpenShift)
3838
OPENSHIFT_GRAFANA_CHART_REPO=grafana
@@ -43,7 +43,7 @@ OPENSHIFT_OAUTHPROXY_FULL_IMAGE="registry.redhat.io/openshift4/ose-oauth-proxy:l
4343
#Grafana (everywhere)
4444
GRAFANA_FULL_IMAGE="docker.io/grafana/grafana:12.2.0"
4545
GRAFANA_SIDECAR_FULL_IMAGE="quay.io/kiwigrid/k8s-sidecar:1.30.9"
46-
GRAFANA_DATASOURCE_PLUGIN_VERSION="2.31.1"
46+
GRAFANA_DATASOURCE_PLUGIN_VERSION="2.32.1"
4747

4848
#Kube-Prometheus Stack
4949
KUBE_PROM_STACK_CHART_REPO=prometheus-community

logging/opensearch/osd_helm_values.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,13 @@ config:
6666
6767
opensearch.requestHeadersWhitelist: ["securitytenant","Authorization"]
6868
69+
# Disable OpenSearch Dashboards 3.x
70+
# features we are not currently
71+
# using and suppress splash screen
72+
##data_source.enabled: false
73+
##workspace.enabled: false
74+
##explore.enabled: false
75+
6976
securityContext:
7077
readOnlyRootFilesystem: true
7178
allowPrivilegeEscalation: false
@@ -75,3 +82,9 @@ podSecurityContext:
7582
seccompProfile:
7683
type: RuntimeDefault
7784

85+
startupProbe:
86+
# OSD can take 2+ minutes
87+
# to start on slow clusters
88+
initialDelaySeconds: 60
89+
periodSeconds: 20
90+
failureThreshold: 30

0 commit comments

Comments
 (0)