You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Dear, I met a problem and I may also know the root cause, but I couldn't solve it , so I need your help.
Current Behavior
Now the condition was like:
I found the log from console like:
I judged when the minio start, the cmd is wrong then lead to this problem.
according to the rules, the minio cmd should be like ---> minio server <flags> {DIRS...}
but the field 'agrs' of sts and pod didn't contains {DIRS} --- > minio server <flags> (picture below)
so I tried to modify the sts but it seems like:
the sts was under controlled by Tenant, I could not modify the args, I also checked the volumemounts, I could find the /export:
So How can I pass the /exportX to the args like: minio server <flags> /export0 /export1 ...
or there is another way which I don't know how to use the operator, thank you for your great support.
The text was updated successfully, but these errors were encountered:
@durant0819 The MinIO container is using a configuration file that can be found in /tmp/minio/config.env. It is generated by the sidecar container and it will contain the servers. In your configuration it should look something like this:
When MINIO_ARGS is set, then you don't need to specify the servers/directories anymore. So this won't be the problem that prevents the server from starting.
Please check the logs using kubectl -n <namespace> logs <pod-name>. MinIO will log why it cannot start.
Dear, I met a problem and I may also know the root cause, but I couldn't solve it , so I need your help.
Current Behavior
Now the condition was like:
I found the log from console like:
I judged when the minio start, the cmd is wrong then lead to this problem.
according to the rules, the minio cmd should be like ---> minio server <flags> {DIRS...}
but the field 'agrs' of sts and pod didn't contains {DIRS} --- > minio server <flags> (picture below)
so I tried to modify the sts but it seems like:
the sts was under controlled by Tenant, I could not modify the args, I also checked the volumemounts, I could find the /export:
So How can I pass the /exportX to the args like: minio server <flags> /export0 /export1 ...
or there is another way which I don't know how to use the operator, thank you for your great support.
The text was updated successfully, but these errors were encountered: