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/elasticsearch/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: elasticsearch
description: Production-ready Elasticsearch cluster with intelligent presets, automated backups, ILM policies, and multi-role architecture
type: application
version: 1.1.3
appVersion: "9.4.2"
appVersion: "9.4.3"
kubeVersion: ">=1.26.0-0"
icon: https://helmforge.dev/icons/charts/elasticsearch.png
home: https://helmforge.dev
Expand Down
14 changes: 7 additions & 7 deletions charts/elasticsearch/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ dataTiers:
| `namespaceOverride` | Namespace for chart-managed namespaced resources | `""` |
| `clusterName` | Elasticsearch cluster name | `helmforge-cluster` |
| `image.repository` | Elasticsearch image | `docker.io/library/elasticsearch` |
| `image.tag` | Image tag | `9.4.2` |
| `image.tag` | Image tag | `9.4.3` |
| `nameOverride` | Override chart name | `""` |
| `fullnameOverride` | Override full release name | `""` |

Expand Down Expand Up @@ -262,7 +262,7 @@ dataTiers:
| Parameter | Description | Default |
|---|---|---|
| `kibana.enabled` | Deploy Kibana alongside Elasticsearch | `false` |
| `kibana.image.tag` | Kibana version (must match ES version) | `9.4.2` |
| `kibana.image.tag` | Kibana version (must match ES version) | `9.4.3` |
| `kibana.replicaCount` | Kibana replica count | `1` |
| `kibana.ingress.enabled` | Expose Kibana via Ingress | `false` |
| `kibana.ingress.hosts` | Ingress hostnames | `[kibana.example.com]` |
Expand Down Expand Up @@ -311,11 +311,11 @@ Security posture acceptable.

## Upgrade Notes

`docker.io/library/elasticsearch:9.4.2` is an upstream image update from
`9.4.1` with upstream security fixes. Review the upstream Elasticsearch release
notes before upgrading production clusters, take a snapshot backup, and verify
Kibana compatibility, plugins, ILM policies, and index templates in a staging
environment before reusing existing PVCs.
`docker.io/library/elasticsearch:9.4.3` is an upstream image update from
`9.4.2` with upstream fixes and enhancements. Review the upstream Elasticsearch
release notes before upgrading production clusters, take a snapshot backup, and
verify Kibana compatibility, plugins, ILM policies, and index templates in a
staging environment before reusing existing PVCs.

## Resources Generated

Expand Down
2 changes: 1 addition & 1 deletion charts/elasticsearch/tests/kibana_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ tests:
asserts:
- equal:
path: spec.template.spec.containers[0].image
value: docker.io/library/kibana:9.4.2
value: docker.io/library/kibana:9.4.3
documentIndex: 0

- it: kibana with security uses https url
Expand Down
2 changes: 1 addition & 1 deletion charts/elasticsearch/tests/profile_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ tests:
asserts:
- equal:
path: spec.template.spec.containers[0].image
value: docker.io/library/elasticsearch:9.4.2
value: docker.io/library/elasticsearch:9.4.3

- it: sysctl init should explicitly opt out of pod-level non-root policy
set:
Expand Down
4 changes: 2 additions & 2 deletions charts/elasticsearch/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"tag": {
"type": "string",
"description": "Elasticsearch image tag (must not be latest)",
"default": "9.4.2"
"default": "9.4.3"
},
"pullPolicy": {
"type": "string",
Expand Down Expand Up @@ -247,7 +247,7 @@
"tag": {
"type": "string",
"description": "Kibana image tag. Keep aligned with Elasticsearch.",
"default": "9.4.2"
"default": "9.4.3"
},
"pullPolicy": {
"type": "string",
Expand Down
4 changes: 2 additions & 2 deletions charts/elasticsearch/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ image:
# -- Elasticsearch image repository (fully qualified, official)
repository: docker.io/library/elasticsearch
# -- Elasticsearch image tag. Defaults to appVersion.
tag: "9.4.2"
tag: "9.4.3"
# -- Image pull policy
pullPolicy: IfNotPresent

Expand Down Expand Up @@ -324,7 +324,7 @@ kibana:
enabled: false
image:
repository: docker.io/library/kibana
tag: "9.4.2"
tag: "9.4.3"
pullPolicy: IfNotPresent
replicaCount: 1
resources: {}
Expand Down