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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ KubeBlocks add-ons.
| clickhouse | clickhouse-22.3.18<br>clickhouse-22.3.20<br>clickhouse-22.6.1<br>clickhouse-22.8.21<br>clickhouse-24.12.2<br>clickhouse-24.7.2<br>clickhouse-24.8.3<br>clickhouse-25.4.4<br>clickhouse-25.9.7 | ClickHouse is an open-source column-oriented OLAP database management system. Use it to boost your database performance while providing linear scalability and hardware efficiency. | loomt |
| elasticsearch | elasticsearch-6.8.23<br>elasticsearch-7.10.1<br>elasticsearch-7.10.2<br>elasticsearch-7.7.1<br>elasticsearch-7.8.1<br>elasticsearch-8.1.3<br>elasticsearch-8.15.5<br>elasticsearch-8.8.2<br>kibana-6.8.23<br>kibana-7.10.1<br>kibana-7.10.2<br>kibana-7.7.1<br>kibana-7.8.1<br>kibana-8.1.3<br>kibana-8.15.5<br>kibana-8.8.2<br>kibana-8.9.1 | Elasticsearch is a distributed, RESTful search engine optimized for speed and relevance on production-scale workloads. | kizuna-lek vipshop |
| etcd | etcd-3.5.15<br>etcd-3.5.6<br>etcd-3.6.1 | Etcd is a strongly consistent, distributed key-value store that provides a reliable way to store data that needs to be accessed by a distributed system or cluster of machines. | loomt |
| falkordb | falkordb-4.12.5<br>falkordb-cluster-4.12.5<br>falkordb-sent-4.12.5 | FalkorDB is an in-memory graph database based on Redis. | ApeCloud dudizimber |
| falkordb | falkordb-4.12.5<br>falkordb-4.14.10<br>falkordb-4.18.11<br>falkordb-4.18.8<br>falkordb-4.20.1<br>falkordb-cluster-4.12.5<br>falkordb-cluster-4.14.10<br>falkordb-cluster-4.18.11<br>falkordb-cluster-4.18.8<br>falkordb-cluster-4.20.1<br>falkordb-sent-4.12.5<br>falkordb-sent-4.14.10<br>falkordb-sent-4.18.11<br>falkordb-sent-4.18.8<br>falkordb-sent-4.20.1 | FalkorDB is an in-memory graph database based on Redis. | ApeCloud dudizimber |
| greptimedb | greptimedb-0.3.2 | An open-source, cloud-native, distributed time-series database with PromQL/SQL/Python supported. | GreptimeTeam sh2 |
| influxdb | influxdb-2.7.11<br>influxdb-data-1.8.10<br>influxdb-meta-1.8.10 | InfluxDB is an open source time-series database. It is a core component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. | cjc7373 |
| kafka | kafka-broker-2.7.0<br>kafka-broker-2.8.2<br>kafka-broker-3.3.2<br>kafka-broker-3.7.1<br>kafka-broker-3.8.1<br>kafka-broker-3.9.0<br>kafka-combine-3.3.2<br>kafka-combine-3.7.1<br>kafka-combine-3.8.1<br>kafka-combine-3.9.0<br>kafka-controller-3.3.2<br>kafka-controller-3.7.1<br>kafka-controller-3.8.1<br>kafka-controller-3.9.0<br>kafka-exporter-1.6.0 | Apache Kafka is a distributed streaming platform designed to build real-time pipelines and can be used as a message broker or as a replacement for a log aggregation solution for big data applications. | cjc7373 caiq1nyu vipshop |
Expand Down
2 changes: 1 addition & 1 deletion addons/falkordb/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ falkordb-cluster-scripts-template-{{ .Chart.Version }}
{{- end }}

{{- define "falkordb.defaultImage" -}}
{{- $defaultTag := .Values.image.tag.major4.minor18 -}}
{{- $defaultTag := .Values.image.tag.major4.minor20.patch1 -}}
{{- $repository := .Values.image.repository -}}
{{- with first .Values.falkordbVersions }}
{{- $defaultTag = .defaultImageTag | default $defaultTag -}}
Expand Down
21 changes: 16 additions & 5 deletions addons/falkordb/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,14 @@ falkordbVersions:
componentDef: "falkordb-4"
clusterComponentDef: "falkordb-cluster-4"
sentinelComponentDef: "falkordb-sent-4"
serviceVersion: "4.18.8"
defaultImageTag: "v4.18.8"
serviceVersion: "4.20.1"
defaultImageTag: "v4.20.1"
repository: "falkordb/falkordb"
mirrorVersions:
- version: "4.20.1"
imageTag: "v4.20.1"
- version: "4.18.11"
imageTag: "v4.18.11"
- version: "4.18.8"
imageTag: "v4.18.8"
- version: "4.14.10"
Expand All @@ -36,9 +40,16 @@ image:
# Overrides the image tag whose default is the chart appVersion.
tag:
major4:
minor18: v4.18.8
minor14: v4.14.10
minor12: v4.12.5
minor20:
patch1: v4.20.1
minor18:
patch11: v4.18.11
minor8:
patch8: v4.18.8
Comment on lines +47 to +48

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win

Fix the incorrect minor version key for v4.18.8.

The image tag v4.18.8 has a minor version of 18, not 8. It should be grouped under the existing minor18 key rather than having a separate minor8 key.

♻️ Proposed fix
-      minor18:
-        patch11: v4.18.11
-      minor8:
-        patch8: v4.18.8
+      minor18:
+        patch11: v4.18.11
+        patch8: v4.18.8
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@addons/falkordb/values.yaml` around lines 47 - 48, In the version mapping,
move the patch8 entry for image tag v4.18.8 from the minor8 key into the
existing minor18 key. Remove the incorrect minor8 grouping while preserving the
patch8 value and surrounding version mappings.

minor14:
patch10: v4.14.10
minor12:
patch5: v4.12.5

apeDts:
registry: ""
Expand Down
Loading