From 407415cbadba8228ae208f5dc75ac32cce9be5b0 Mon Sep 17 00:00:00 2001 From: Pedro Sanders Date: Sat, 23 Nov 2024 11:05:27 -0500 Subject: [PATCH] fix: add amd64 compatibility in Kubernetes environment --- compose.dev.yaml | 6 ++++-- ops/charts/connect/Chart.yaml | 8 ++++---- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/compose.dev.yaml b/compose.dev.yaml index a6fc287f5..a58ec9877 100644 --- a/compose.dev.yaml +++ b/compose.dev.yaml @@ -117,13 +117,15 @@ services: - 10000-10020:10000-10020/udp redis: - image: redis:7.0.8-alpine + image: bitnami/redis:7.4.1 restart: always + environment: + ALLOW_EMPTY_PASSWORD: yes ports: - 6379:6379 postgres: - image: postgres:14.1-alpine + image: bitnami/postgresql:17.2.0 restart: always environment: POSTGRES_USER: postgres diff --git a/ops/charts/connect/Chart.yaml b/ops/charts/connect/Chart.yaml index 40b2a0a1b..0ea353091 100644 --- a/ops/charts/connect/Chart.yaml +++ b/ops/charts/connect/Chart.yaml @@ -2,14 +2,14 @@ apiVersion: v2 name: routr-connect description: Routr Connect Helm Chart type: application -version: 0.4.2 -appVersion: 2.9.0 +version: 0.4.1 +appVersion: 2.13.6 dependencies: - name: postgresql - version: 12.1.15 + version: 16.2.2 repository: https://charts.bitnami.com/bitnami condition: postgresql.enabled - name: redis - version: 17.7.3 + version: 20.3.0 repository: https://charts.bitnami.com/bitnami condition: redis.enabled