34 lines
774 B
YAML
34 lines
774 B
YAML
# yaml-language-server: $schema=https://raw.githubusercontent.com/ansible/ansible-lint/refs/heads/main/src/ansiblelint/schemas/playbook.json
|
|
|
|
---
|
|
- name: Setup S3 storage
|
|
hosts: s3
|
|
tasks:
|
|
- name: Install MinIO
|
|
become: true
|
|
apk:
|
|
name: minio
|
|
update_cache: yes
|
|
|
|
- name: Create MinIO directories
|
|
become: true
|
|
file:
|
|
path: /data/minio
|
|
state: directory
|
|
owner: minio
|
|
group: minio
|
|
mode: '0755'
|
|
|
|
- name: Configure MinIO
|
|
copy:
|
|
dest: /etc/default/minio
|
|
content: |
|
|
MINIO_VOLUMES="/data/minio/"
|
|
MINIO_OPTS="--address :9000"
|
|
|
|
- name: Enable and start MinIO service
|
|
service:
|
|
name: minio
|
|
enabled: yes
|
|
state: started
|
|
|