26 lines
889 B
Markdown
26 lines
889 B
Markdown
# try-rustfs
|
|
|
|
Looking for a minio alternative and trying out rustfs. Currently all the
|
|
operations are documented in the justfile.
|
|
|
|
Startup time is insane... I also checked minio, and it is also crazy fast, I
|
|
did not realize how fast these things can start up.
|
|
|
|
``` bash
|
|
just start list-buckets list-dropper 0.81s user 0.29s system 73% cpu 1.494 total
|
|
just list-buckets list-dropper 0.67s user 0.22s system 74% cpu 1.203 total
|
|
```
|
|
|
|
## .env
|
|
|
|
Yes there is a `.env` file in the root directory. Yes it includes secrets. Yes
|
|
this would be a bad idea for anything connected to the internet. This only
|
|
ever only ever ran on my local system.
|
|
|
|
**never** commit real secrets to your repo.
|
|
|
|
## Token Management
|
|
|
|
I ran into issues using the `mcli` to manage tokens. I'm working on creating
|
|
something based on a request in the console. Gippity created managetoken.py
|
|
for me based on the request.
|