Skip to content

Commit 36fce9d

Browse files
committed
replace bitnami with bitnamilegacy
1 parent c730afe commit 36fce9d

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
.PHONY: setup_helm_repos
22
setup_helm_repos:
3-
helm repo add bitnami-pre-2022 https://raw.githubusercontent.com/bitnami/charts/defb094c658024e4aa8245622dab202874880cbc/bitnami # Github tag before bitnami truncated the index. Old link didn't work anymore
3+
# Helm 3: Bitnami recommends OCI registry for charts
4+
# No need to add HTTP chart repo for RabbitMQ; dependency uses oci://
45
helm repo add stable https://charts.helm.sh/stable
56
helm repo add codacy-stable https://charts.codacy.com/stable
67
helm repo add codacy-unstable https://charts.codacy.com/unstable

codacy/requirements.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ dependencies:
55
condition: global.minio.create
66
alias: minio
77

8-
# Github tag before bitnami truncated the index. Old link didn't work anymore
9-
- name: rabbitmq
10-
version: 7.5.7
11-
repository: https://raw.githubusercontent.com/bitnami/charts/defb094c658024e4aa8245622dab202874880cbc/bitnami
8+
# Helm 3: consume Bitnami chart via OCI registry (full chart path)
9+
- name: rabbitmq
10+
version: ">=14.0.0"
11+
repository: oci://registry-1.docker.io/bitnamicharts/rabbitmq
1212
condition: global.rabbitmq.create
1313
alias: rabbitmq-ha
1414

codacy/values-microk8s.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,10 @@ crow:
5555

5656
rabbitmq-ha:
5757
replicaCount: 1
58+
image:
59+
registry: docker.io
60+
repository: rabbitmq
61+
tag: 3.9.29-management-alpine
5862
resources:
5963
limits:
6064
cpu: 0.5

codacy/values-production.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -313,6 +313,10 @@ codacy-spa:
313313

314314
rabbitmq-ha:
315315
replicaCount: 1
316+
image:
317+
registry: docker.io
318+
repository: rabbitmq
319+
tag: 3.9.29-management-alpine
316320
rabbitmqErlangCookie: <--- erlang-cookie ---> # Generate one with `openssl rand -base64 32 | tr -dc 'a-zA-Z0-9'`
317321
persistentVolume:
318322
enabled: true

0 commit comments

Comments
 (0)