Michael Grote
bc6f8fdc9e
Reviewed-on: #233 Co-authored-by: Michael Grote <michael.grote@posteo.de> Co-committed-by: Michael Grote <michael.grote@posteo.de>
36 lines
1.1 KiB
YAML
36 lines
1.1 KiB
YAML
---
|
|
# auf Zielhost benötigt: pip3 install minio
|
|
# auf ansible-controller: https://galaxy.ansible.com/ui/repo/published/dubzland/minio/content/module/minio_alias/
|
|
|
|
- name: include mcli tasks
|
|
ansible.builtin.include_tasks: client.yml
|
|
|
|
- name: ensure mc alias exists
|
|
dubzland.minio.minio_alias:
|
|
name: "{{ minio_root_alias }}"
|
|
url: "{{ minio_url }}"
|
|
access_key: "{{ minio_root_access_key }}"
|
|
secret_key: "{{ minio_root_secret_key }}"
|
|
state: present
|
|
|
|
- name: include policy tasks
|
|
ansible.builtin.include_tasks: policy.yml
|
|
|
|
- name: include bucket tasks
|
|
ansible.builtin.include_tasks: bucket.yml
|
|
|
|
- name: Ensure users exist
|
|
dubzland.minio.minio_user:
|
|
access_key: "{{ item.name }}"
|
|
secret_key: "{{ item.secret }}"
|
|
policy: "{{ item.policy }}"
|
|
auth:
|
|
access_key: "{{ minio_root_access_key }}"
|
|
secret_key: "{{ minio_root_secret_key }}"
|
|
url: "{{ minio_url }}"
|
|
state: "{{ item.state | default('present') }}"
|
|
loop: "{{ minio_users }}"
|
|
no_log: "{{ no_debug | default('true') }}"
|
|
|
|
# Bug: delegate_to: localhost
|
|
# in ansible-devspace wird das Python Paket "minio" nicht gefunden
|