-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FIX] fixed bugs in minio uinstall and rhel
- Loading branch information
1 parent
8af11a9
commit 980b8b2
Showing
5 changed files
with
71 additions
and
14 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# 📋 MinIO Object Storage Installation Playbook | ||
|
||
This playbook installs MinIO as a binary on servers using the **Single-Node Single-Drive** installation method. | ||
|
||
## 🛠️ Usage | ||
|
||
In the `vars.yml` file, the following variables should be defined: | ||
|
||
```yml | ||
--- | ||
minio_directory: /mnt/data | ||
minio_admin_user: admin | ||
minio_admin_user_password: wo#*4fd-LDSsgsa | ||
``` | ||
# Install MinIO | ||
Run the following command to install MinIO on your servers: | ||
```bash | ||
ansible-playbook -i inventory.ini ./install_minio.yml | ||
``` | ||
# Clean up and Uninstall MinIO | ||
To clean up and uninstall MinIO, use the following command: | ||
```bash | ||
ansible-playbook -i inventory.ini ./uninstall_minio.yml | ||
``` | ||
|
||
|
||
# 💻 Supported Linux Operating Systems | ||
* 🐧 **Debian:** 11,12 | ||
* 🐧 **Ubuntu:** 20.04,22.04 | ||
* 🐧 **RHEL:** 7,8 | ||
* 🐧 **Fedora:** 39,40 | ||
|
||
# ✅ Tested Operating Systems | ||
|
||
* ✅**Debian:** 11,12 | ||
* ✅**Ubuntu:** 20.04,22.04 | ||
* ✅**RHEL:** 7,8 | ||
|
||
# ⚙️ Supported Ansible Versions | ||
* ✅ ansible [core 2.16.3] | ||
* ❗️ ansible [core 2.17.3] (compatibility issues) | ||
|
||
> Note: The playbook assumes you are running Ansible as the `root` user. |
File renamed without changes.
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
File renamed without changes.
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