-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
15ad3a3
commit 0daa2f6
Showing
22 changed files
with
103 additions
and
230 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
Maintainers of this repository: | ||
|
||
* Harshavardhana <[email protected]> @harshavardhana | ||
* Andrea Tosatto <[email protected]> @atosatto | ||
* Pawel Krupa <[email protected]> @paulfantom | ||
* Ben Kochie <[email protected]> @SuperQ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,44 @@ | ||
--- | ||
|
||
# Minio binaries path | ||
# MinIO binaries path | ||
minio_server_bin: /usr/local/bin/minio | ||
minio_client_bin: /usr/local/bin/mc | ||
|
||
# Minio release to install. default if lastet | ||
minio_server_release: "" | ||
minio_client_release: "" | ||
# MinIO release to install. default if latest | ||
minio_server_release: "RELEASE.2020-08-18T19-41-00Z" | ||
|
||
# Runtime user and group for the Minio server service | ||
minio_client_release: "RELEASE.2020-08-20T00-23-01Z" | ||
|
||
# Runtime user and group for the MinIO server service | ||
minio_user: minio | ||
minio_group: minio | ||
|
||
# Path to the file containing the ENV variables for the Minio server | ||
# Path to the file containing the ENV variables for the MinIO server | ||
minio_server_envfile: /etc/default/minio | ||
|
||
# Minio server listen address | ||
# MinIO server listen address | ||
minio_server_addr: ":9091" | ||
|
||
# Minio server data directories | ||
# MinIO server data directories | ||
minio_server_datadirs: | ||
- /var/lib/minio | ||
minio_server_make_datadirs: true | ||
|
||
# Minio server cluster node list. | ||
minio_server_cluster_nodes: [ ] | ||
# MinIO server args list. | ||
minio_server_args: | ||
- /var/lib/minio | ||
|
||
# Additional environment variables to be set in minio server environment | ||
minio_server_env_extra: "" | ||
minio_server_env_extra: | | ||
MINIO_REGION_NAME=us-east-1 | ||
# Additional Minio server CLI options | ||
# Additional MinIO server CLI options | ||
minio_server_opts: "" | ||
|
||
# Minio access and secret keys | ||
minio_access_key: "" | ||
minio_secret_key: "" | ||
# MinIO access and secret keys | ||
minio_access_key: "minio" | ||
minio_secret_key: "minio123" | ||
|
||
# Switches to enable/disable the Minio server and/or Minio client installation. | ||
# Switches to enable/disable the MinIO server and/or MinIO client installation. | ||
minio_install_server: true | ||
minio_install_client: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,3 +12,5 @@ | |
- "/srv/data2" | ||
- "/srv/data3" | ||
- "/srv/data4" | ||
minio_server_args: | ||
- "/srv/data{1...4}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.