homeserver/roles/mgrote_minio_configure/tasks/main.yml

50 lines
1.4 KiB
YAML
Raw Normal View History

2024-11-09 10:06:25 +01:00
---
2024-11-09 21:00:38 +01:00
- name: include mcli tasks
ansible.builtin.include_tasks: client.yml
2024-11-09 10:13:33 +01:00
2024-11-09 21:00:58 +01:00
- name: ensure mc alias exists
2024-11-09 18:45:03 +01:00
dubzland.minio.minio_alias:
2024-11-09 18:45:31 +01:00
name: "{{ minio_root_alias }}"
url: "{{ minio_url }}"
access_key: "{{ minio_root_access_key }}"
secret_key: "{{ minio_root_secret_key }}"
2024-11-09 18:45:03 +01:00
state: present
2024-11-09 18:50:36 +01:00
2024-11-09 19:13:45 +01:00
# bug:delegate to geht nciht
# no_log überall bei keys und users
# linter
# succssfu/changed_when
# state absent einbauen
2024-11-09 10:16:52 +01:00
2024-11-09 18:49:50 +01:00
- name: include policy tasks
ansible.builtin.include_tasks: policy.yml
2024-11-09 10:49:03 +01:00
- name: include bucket tasks
ansible.builtin.include_tasks: bucket.yml
2024-11-09 20:36:42 +01:00
- name: Add a Minio user
dubzland.minio.minio_user:
access_key: "{{ item.name }}"
secret_key: "{{ item.secret }}"
2024-11-09 20:37:32 +01:00
policy: "{{ item.policy }}"
2024-11-09 20:36:42 +01:00
auth:
access_key: "{{ minio_root_access_key }}"
secret_key: "{{ minio_root_secret_key }}"
url: "{{ minio_url }}"
state: "{{ item.state | default('present') }}"
loop: "{{ minio_users }}"
2024-11-09 11:25:04 +01:00
- name: get all access keys (is set to true)
ansible.builtin.command: "{{ minio_client_bin }} --dp admin accesskey list {{ minio_root_alias }} --all"
when: minio_print_keys
register: all_keys
2024-11-09 20:43:30 +01:00
changed_when: false
2024-11-09 11:25:04 +01:00
- name: geprintt all access keys (is set to true)
ansible.builtin.debug:
msg: "{{ all_keys.stdout_lines }}"
when: minio_print_keys
2024-11-09 18:49:50 +01:00
2024-11-09 19:12:06 +01:00
# https://galaxy.ansible.com/ui/repo/published/dubzland/minio/content/module/minio_alias/ + pip3 install minio