minio_role/templates/minio_config.j2

24 lines
1.1 KiB
Django/Jinja

# MINIO_ROOT_USER and MINIO_ROOT_PASSWORD sets the root account for the MinIO se
rver.
# This user has unrestricted permissions to perform S3 and administrative API op
erations on any resource in the deployment.
# Omit to use the default values 'minioadmin:minioadmin'.
# MinIO recommends setting non-default values as a best practice, regardless of
environment.
MINIO_ROOT_USER={{minio.admin_user}}
MINIO_ROOT_PASSWORD={{minio.admin_passwd}}
# MINIO_VOLUMES sets the storage volumes or paths to use for the MinIO server.
# The specified path uses MinIO expansion notation to denote a sequential series
of drives between 1 and 4, inclusive.
# All drives or paths included in the expanded drive list must exist *and* be em
pty or freshly formatted for MinIO to start successfully.
MINIO_SERVER_URL="{{ minio.url }}"
MINIO_VOLUMES="{{ minio.disks_pool }}"
# MINIO_OPTS sets any additional commandline options to pass to the MinIO server
.
# For example, `--console-address :9001` sets the MinIO Console listen port
MINIO_OPTS="--console-address :{{minio.console_port}} --certs-dir={{ minio_rootdir }}/certs"