27👍
If you use docker:
environment:
MINIO_ROOT_USER: ${MINIO_ROOT_USER}
MINIO_ROOT_PASSWORD: ${MINIO_ROOT_PASSWORD}
They are equivalent:
MINIO_ACCESS_KEY=MINIO_ROOT_USER
MINIO_SECRET_KEY=MINIO_ROOT_PASSWORD
13👍
Go to your minio console and find Users page. You can create a new user and set it MINIO_ACCESS_KEY and MINIO_SECRET_KEY or can view user credentials.
- [Django]-Filtering using viewsets in django rest framework
- [Django]-How to get getting base_url in django template
- [Django]-Images from ImageField in Django don't load in template
2👍
AccessKey is similar to username and should be minimum of 5 characters. SecretKey is similar to password, it should be randomly generated and kept secure.
- [Django]-AccessDenied when calling the CreateMultipartUpload operation in Django using django-storages and boto3
- [Django]-How to make an auto-filled and auto-incrementing field in django admin
- [Django]-How to test "render to template" functions in django? (TDD)
1👍
Its called Service Accounts, Go to Users menu, then Service Accounts sub menu.
create a new MINIO_ACCESS_KEY, MINIO_SECRET_KEY
- [Django]-Django-rest-framework returning 403 response on POST, PUT, DELETE despite AllowAny permissions
- [Django]-Itertools.groupby in a django template
- [Django]-Django: guidelines for speeding up template rendering performance
0👍
From the cluster
kubectl get secrets
NAME TYPE DATA AGE
default-token-hxzsv kubernetes.io/service-account-token 3 5h34m
minio-sa-token-nxdpt kubernetes.io/service-account-token 3 14m
mino-test-minio Opaque 2 14m
my-s3-keys Opaque 2 3h33m
mypostgres-secret Opaque 2 5h20m
sh.helm.release.v1.mino-test.v1 helm.sh/release.v1 1 14m
alex@pop-os:~/coding/preso_hive$ kubectl get secret mino-test-minio -o yaml
apiVersion: v1
data:
rootPassword: bWluaW8xMjM=
rootUser: bWluaW8=
kind: Secret
metadata:
annotations:
meta.helm.sh/release-name: mino-test
meta.helm.sh/release-namespace: default
creationTimestamp: "2022-06-14T10:15:14Z"
labels:
app: minio
app.kubernetes.io/managed-by: Helm
chart: minio-4.0.2
heritage: Helm
release: mino-test
name: mino-test-minio
namespace: default
resourceVersion: "58285"
uid: c23ce2d4-657e-4feb-adea-df83bba489c5
type: Opaque
Note the rootUser and rootPassword from the secret and you can use base64 to decode
$ echo bWluaW8= | base64 --decode
minioalex
$ echo bWluaW8xMjM= | base64 --decode
minio123
- [Django]-Filtering using viewsets in django rest framework
- [Django]-Annotate a queryset with the average date difference? (django)
- [Django]-Django 1.3.1 compilemessages. Error: sh: msgfmt: command not found
0👍
If you have installed the Milvus database and looking for Milvus MinIO "Access Key" and "Secret Key" to log in to http://IP_Address:9000 below are the default details:
Access Key: minioadmin
Secret Key: minioadmin
- [Django]-How to get getting base_url in django template
- [Django]-Do we need to upload virtual env on github too?
- [Django]-Django 1.3.1 compilemessages. Error: sh: msgfmt: command not found