Skip to content

Commit

Permalink
Updating url for bitnami charts repo, redis and rabbitmq image tags (#…
Browse files Browse the repository at this point in the history
…207)

This PR fixes an issue in which cluster setup would fail with an `Error:
could not download chart: invalid_reference: invalid tag` error message
when installing rabbitmq. This is related to [this issue in bitnami
repo](bitnami/charts#30582), and fixes issue
#203.

This PR also updates the redis and rabbitmq image tags to the latest
versions to ensure compatibility with the latest dependencies and
security patches.
  • Loading branch information
rafaspadilha authored Nov 27, 2024
1 parent 98f3f71 commit 60770fa
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/vibe_core/vibe_core/cli/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@
# Local constants
ONNX_SUBDIR = "onnx_resources"
FARMVIBES_AI_LOG_LEVEL = "DEBUG"
REDIS_IMAGE_TAG = "7.0.4-debian-11-r11"
RABBITMQ_IMAGE_TAG = "3.10.8-debian-11-r4"
REDIS_IMAGE_TAG = "7.4.1-debian-12-r2"
RABBITMQ_IMAGE_TAG = "4.0.4-debian-12-r1"
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
resource "helm_release" "rabbitmq" {
name = "rabbitmq"

repository = "https://charts.bitnami.com/bitnami"
repository = "oci://registry-1.docker.io/bitnamicharts"
chart = "rabbitmq"
namespace = var.namespace

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
resource "helm_release" "redis" {
name = "redis"

repository = "https://charts.bitnami.com/bitnami"
repository = "oci://registry-1.docker.io/bitnamicharts"
chart = "redis"
namespace = var.namespace

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
resource "helm_release" "rabbitmq" {
name = "rabbitmq"

repository = "https://charts.bitnami.com/bitnami"
repository = "oci://registry-1.docker.io/bitnamicharts"
chart = "rabbitmq"
namespace = var.namespace

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
resource "helm_release" "redis" {
name = "redis"

repository = "https://charts.bitnami.com/bitnami"
repository = "oci://registry-1.docker.io/bitnamicharts"
chart = "redis"
namespace = var.namespace

Expand Down

0 comments on commit 60770fa

Please sign in to comment.