-
Notifications
You must be signed in to change notification settings - Fork 191
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
Minio pod crashes after updating from 24.1.0 to 24.1.1 #400
Comments
@tomikonio , I think that you could use minio version from 24.1.0 in your installation of 24.1.1. |
Hi! Have you updated Chart.yaml? We updated MinIO Chart from |
Changing the minio image tag to
Tried Thank you both :) We are using the ReportPortal helm chart as a dependency so we take its release as a whole including all of its dependencies. This should solve the issue, but we will have to stay on the old minio version, so this is an undesirable solution. |
Update:
We have implemented the above suggestion - used
This error is caused by having another helm chart which uses the bitnami To solve the above error we had to set After implementing this, the report-portal works. Conclusion: Dependencies: dependencies:
- name: reportportal
version: 24.1.2
repository: https://reportportal.io/kubernetes/
- name: minio
version: 6.7.7
repository: https://raw.githubusercontent.com/bitnami/charts/archive-full-index/bitnami
condition: minioexternal.install
- name: rabbitmq
version: 10.3.9
repository: https://charts.bitnami.com/bitnami
condition: rabbitmqexternal.install We will be glad to hear of other possible solutions for the issue. |
Hi, One possible solution to this issue is to back up the MinIO data currently stored in You can also experiment with backing up a PVC and restoring it using The issue is probably due to data inconsistency in the old version. |
Hi, Unless I have misunderstood you, that is exactly what we are doing -> providing the old data to the new version of minio and that is precisely what causes the error. I do not see what difference a restore from a backup of the volume will make, as it has the same data as the original volume. I think the issue lies in some metadata that the |
After updating with existing data from
24.1.0
to24.1.1
the minio container crashes.We tested the minio without providing data and it works.
In
24.1.1
minio has been updated - from2021.4.22-debian-10-r6
to2024.5.10-debian-12-r2
(link to diff)Error overview:
readinessProbe
constraintsThis is our minio configuration in
values.yaml
(updated from the old-minioaccesskey
/secretkey
torootUser
/rootPassword
):About
ERROR Unable to use the drive /data: drive not found: Invalid arguments specified
- the/data
dir is set to the correct minio container user (1001
) due tovolumePermissions.enabled=true
setting:And all data is indeed there:
Reverting back to
24.1.0
-> all is working correctly with the data.Any idea?
The text was updated successfully, but these errors were encountered: