docs
This commit is contained in:
parent
3652309f1f
commit
afbc38c2af
2 changed files with 14 additions and 15 deletions
|
@ -1,15 +1,19 @@
|
||||||
---
|
---
|
||||||
minio_root_access_key: pfiDnpEL3rL1CmIedZbD # händisch zu erstellen beium ersten minio aufsetzen
|
# Client
|
||||||
minio_root_secret_key: Bc2eyAiTxLok0RawYguQJUB0hC8HtvCA7RjYRAfV # händisch zu erstellen beium ersten minio aufsetzen
|
|
||||||
minio_root_alias: minio_ansible_root
|
|
||||||
minio_url: https://s3.mgrote.net
|
|
||||||
minio_config_dir: /etc/minio
|
|
||||||
minio_client_release: ""
|
minio_client_release: ""
|
||||||
minio_client_bin: /usr/local/bin/mc
|
minio_client_bin: /usr/local/bin/mc
|
||||||
minio_print_keys: true # zeige secret in playbook
|
|
||||||
|
|
||||||
# --dp ausschreiben
|
# Allgemeines
|
||||||
|
minio_config_dir: /etc/minio
|
||||||
|
minio_root_alias: minio_ansible_root
|
||||||
|
|
||||||
|
minio_url: https://s3.mgrote.net
|
||||||
|
|
||||||
|
# Secrets
|
||||||
|
minio_root_access_key: pfiDnpEL3rL1CmIedZbD
|
||||||
|
minio_root_secret_key: Bc2eyAiTxLok0RawYguQJUB0hC8HtvCA7RjYRAfV
|
||||||
|
|
||||||
|
# User
|
||||||
minio_users:
|
minio_users:
|
||||||
- name: testuser5
|
- name: testuser5
|
||||||
secret: hallowelt
|
secret: hallowelt
|
||||||
|
@ -24,13 +28,10 @@ minio_users:
|
||||||
state: absent
|
state: absent
|
||||||
policy: testbucket3_ro
|
policy: testbucket3_ro
|
||||||
|
|
||||||
|
# Buckets
|
||||||
# Anzulegende Buckets, pro Bucket wird eine RW + RO Policy erstellt
|
# Anzulegende Buckets, pro Bucket wird eine RW + RO Policy erstellt
|
||||||
minio_buckets:
|
minio_buckets:
|
||||||
- name: testbucket1
|
- name: testbucket1
|
||||||
state: present
|
state: present
|
||||||
- name: testbucket3
|
- name: testbucket3
|
||||||
state: absent
|
state: absent
|
||||||
|
|
||||||
|
|
||||||
# auf docker10 aufraumen
|
|
||||||
# und irtantu
|
|
||||||
|
|
|
@ -27,12 +27,12 @@
|
||||||
loop: "{{ minio_buckets }}"
|
loop: "{{ minio_buckets }}"
|
||||||
|
|
||||||
- name: "setup policies (ro)"
|
- name: "setup policies (ro)"
|
||||||
ansible.builtin.command: "{{ minio_client_bin }} --dp admin policy create {{ minio_root_alias }} {{ item.name }}_ro {{ minio_config_dir }}/{{ item.name }}_ro"
|
ansible.builtin.command: "{{ minio_client_bin }} --disable-pager admin policy create {{ minio_root_alias }} {{ item.name }}_ro {{ minio_config_dir }}/{{ item.name }}_ro"
|
||||||
loop: "{{ minio_buckets }}"
|
loop: "{{ minio_buckets }}"
|
||||||
changed_when: false # Befehl gibt immer "Created policy `testbucket3_ro` successfully." aus, unabhängig ob sie schon existiert oder nicht.
|
changed_when: false # Befehl gibt immer "Created policy `testbucket3_ro` successfully." aus, unabhängig ob sie schon existiert oder nicht.
|
||||||
|
|
||||||
- name: "setup policies (rw)"
|
- name: "setup policies (rw)"
|
||||||
ansible.builtin.command: "{{ minio_client_bin }} --dp admin policy create {{ minio_root_alias }} {{ item.name }}_rw {{ minio_config_dir }}/{{ item.name }}_rw"
|
ansible.builtin.command: "{{ minio_client_bin }} --disable-pager admin policy create {{ minio_root_alias }} {{ item.name }}_rw {{ minio_config_dir }}/{{ item.name }}_rw"
|
||||||
loop: "{{ minio_buckets }}"
|
loop: "{{ minio_buckets }}"
|
||||||
changed_when: false # Befehl gibt immer "Created policy `testbucket3_ro` successfully." aus, unabhängig ob sie schon existiert oder nicht.
|
changed_when: false # Befehl gibt immer "Created policy `testbucket3_ro` successfully." aus, unabhängig ob sie schon existiert oder nicht.
|
||||||
|
|
||||||
|
@ -42,5 +42,3 @@
|
||||||
state: absent
|
state: absent
|
||||||
loop: "{{ minio_buckets }}"
|
loop: "{{ minio_buckets }}"
|
||||||
when: '"absent" in item.state'
|
when: '"absent" in item.state'
|
||||||
|
|
||||||
# deletata to localhost
|
|
||||||
|
|
Loading…
Reference in a new issue