Skip to content

Commit

Permalink
[Elasticsearch] Fixed Kibana version. Added to schema.json to be spec…
Browse files Browse the repository at this point in the history
…ified by user.
  • Loading branch information
Gaspi committed Nov 26, 2024
1 parent 2558969 commit 777bbf4
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 10 deletions.
2 changes: 1 addition & 1 deletion charts/elastic/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 2.0.5
version: 2.0.6

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
30 changes: 22 additions & 8 deletions charts/elastic/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
"type": "object",
"properties": {
"elasticsearch": {
"description": "elasticsearch configuration",
"description": "Elasticsearch configuration",
"type": "object",
"properties": {
"image": {
"description": "elasticsearch image",
"description": "Elasticsearch image",
"type": "object",
"properties": {
"registry": {
Expand All @@ -21,15 +21,13 @@
"default": "bitnami/elasticsearch"
},
"tag": {
"description": "tag",
"description": "Tag Elasticsearch",
"type": "string",
"default": "8.15.1-debian-12-r2",
"default": "8.16.1-debian-12-r0",
"enum": [
"8.16.1-debian-12-r0",
"8.15.1-debian-12-r2",
"8.14.2-debian-12-r1",
"8.14.1-debian-12-r1",
"8.13.4-debian-12-r0",
"7.17.3"
"8.14.2-debian-12-r1"
]
},
"pullPolicy": {
Expand Down Expand Up @@ -74,6 +72,22 @@
"description": "kibana specific configuration",
"type": "object",
"properties": {
"image": {
"description": "Kibana image",
"type": "object",
"properties": {
"tag": {
"description": "Tag Kibana",
"type": "string",
"default": "8.16.1-debian-12-r0",
"enum": [
"8.16.1-debian-12-r0",
"8.16.0-debian-12-r0",
"8.15.3-debian-12-r0"
]
}
}
},
"elasticsearch": {
"type": "object",
"properties": {
Expand Down
4 changes: 3 additions & 1 deletion charts/elastic/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ elasticsearch:
image:
registry: docker.io
repository: bitnami/elasticsearch
tag: 8.15.1-debian-12-r2
tag: 8.16.1-debian-12-r0
digest: ""
## Specify a imagePullPolicy
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
Expand All @@ -31,6 +31,8 @@ elasticsearch:
autoGenerated: true

kibana:
image:
tag: 8.16.1-debian-12-r0
elasticsearch:
security:
auth:
Expand Down

0 comments on commit 777bbf4

Please sign in to comment.