-
-
Notifications
You must be signed in to change notification settings - Fork 262
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Helm Chart : Versions of dependencies unavailable #383
Comments
It looks like Bitnami dropped old releases from their index: bitnami/charts#10539. We can either move to their GitHub-hosted archive: diff --git kubernetes/chart/zulip/Chart.yaml kubernetes/chart/zulip/Chart.yaml
index b25b7bb..19f9d0f 100644
--- kubernetes/chart/zulip/Chart.yaml
+++ kubernetes/chart/zulip/Chart.yaml
@@ -15,22 +15,22 @@ version: 0.4.0
appVersion: "6.1-0"
dependencies:
- name: memcached
- repository: https://charts.bitnami.com/bitnami
+ repository: https://raw.githubusercontent.com/bitnami/charts/archive-full-index/bitnami
tags:
- memcached
version: 6.0.16
- name: rabbitmq
- repository: https://charts.bitnami.com/bitnami
+ repository: https://raw.githubusercontent.com/bitnami/charts/archive-full-index/bitnami
tags:
- rabbitmq
version: 8.32.0
- name: redis
- repository: https://charts.bitnami.com/bitnami
+ repository: https://raw.githubusercontent.com/bitnami/charts/archive-full-index/bitnami
tags:
- redis
version: 16.8.7
- name: postgresql
- repository: https://charts.bitnami.com/bitnami
+ repository: https://raw.githubusercontent.com/bitnami/charts/archive-full-index/bitnami
tags:
- postgresql
# Note: values.yaml overwrites posgresql image to zulip/zulip-postgresql:14 or, we can update the chart to the latest versions: diff --git kubernetes/chart/zulip/Chart.yaml kubernetes/chart/zulip/Chart.yaml
index b25b7bb..79bad77 100644
--- kubernetes/chart/zulip/Chart.yaml
+++ kubernetes/chart/zulip/Chart.yaml
@@ -18,23 +18,23 @@ dependencies:
repository: https://charts.bitnami.com/bitnami
tags:
- memcached
- version: 6.0.16
+ version: 6.3.5
- name: rabbitmq
repository: https://charts.bitnami.com/bitnami
tags:
- rabbitmq
- version: 8.32.0
+ version: 11.9.1
- name: redis
repository: https://charts.bitnami.com/bitnami
tags:
- redis
- version: 16.8.7
+ version: 17.7.4
- name: postgresql
repository: https://charts.bitnami.com/bitnami
tags:
- postgresql
# Note: values.yaml overwrites posgresql image to zulip/zulip-postgresql:14
- version: 11.1.22
+ version: 11.9.13
sources:
- https://github.com/zulip/zulip Can you try the latter and let us know if it works for you? |
Thanks you for the link of archives. |
If the new versions work, we should bump our dependencies to them so we fix this for others. |
How did you end up fixing the rabbitmq issues? |
Never fixed, we frequently encounter "client unexpectedly closed TCP connection" warn in the logs of the RabbitMQ pod. However, there is no impact; Zulip works perfectly for approximately 60 users each day.
|
I've definitely seen issues in the past with Docker/Kubernetes environments killing network connections that have been alive for more than 60 seconds or some other fixed period; that is likely the cause of the errors you're seeing in logs. The Helm chart versions have been updated, so closing this issue as fixed. |
Hi,
The versions specified (in Chart.yaml) of redis, memcached, rabbitmq and postgresql are not available anymore on Bitnami repo.
"Error: can't get a valid version for repositories memcached, rabbitmq, redis, postgresql. Try changing the version constraint in Chart.yaml"
The text was updated successfully, but these errors were encountered: