diff --git a/group_vars/minio.yml b/group_vars/minio.yml deleted file mode 100644 index 7baeef27..00000000 --- a/group_vars/minio.yml +++ /dev/null @@ -1,47 +0,0 @@ ---- - ### oefenweb.ufw - ufw_rules: - - rule: allow - to_port: 22 - protocol: tcp - comment: 'ssh' - from_ip: 192.168.2.0/24 - - rule: allow - to_port: 4949 - protocol: tcp - comment: 'munin' - from_ip: 192.168.2.144/24 - - rule: allow - to_port: "{{ minio_port }}" - protocol: tcp - comment: 'minio' - from_ip: 192.168.2.0/24 - - rule: allow - to_port: "{{ minio_console_port }}" - protocol: tcp - comment: 'minio-mgmt' - from_ip: 192.168.2.0/24 - - ### mgrote.minio - minio_download_url: https://dl.min.io/server/minio/release/linux-amd64/minio - - minio_bin_path: /usr/local/bin - minio_volumes_base_dir: /bm/s3/ - minio_config_dir: /etc/minio - - minio_fqdn: "" # leer, damit wird an alle ips gebunden - minio_port: 9001 # Port für Request - minio_console_port: 34081 # Port für Mgmt - - minio_root_user: mg_minio_root - minio_root_password: "{{ lookup('keepass', 'minio_root_password', 'password') }}" - - minio_user: minio-user - minio_group: minio-user - - minio_server_url: "" # leer, wie "nicht gesetzt" - minio_browser_redirect_url: "" # leer, wie "nicht gesetzt" - - # Aufruf: - # intern: minio1.grote.lan:9000 - # extern: s3.mgrote.net diff --git a/inventory b/inventory index 449dc1ea..a8e7af0b 100644 --- a/inventory +++ b/inventory @@ -4,10 +4,6 @@ all: hosts: dokuwiki2.grote.lan: dokuwiki-test.grote.lan: - minio: - hosts: - minio1.grote.lan: - minio-test.grote.lan: tor: hosts: tor1-test.grote.lan: @@ -75,7 +71,6 @@ all: docker3.grote.lan: docker4.grote.lan: tor1.mgrote.net: - minio1.grote.lan: test: hosts: dokuwiki-test.grote.lan: @@ -89,5 +84,4 @@ all: ntp-server-test.grote.lan: fileserver2-test.grote.lan: tor1-test.grote.lan: - minio-test.grote.lan: bastelstube.grote.lan: diff --git a/playbooks/3_service/minio.yml b/playbooks/3_service/minio.yml deleted file mode 100644 index 7d5b11d8..00000000 --- a/playbooks/3_service/minio.yml +++ /dev/null @@ -1,4 +0,0 @@ ---- -- hosts: minio - roles: - - { role: mgrote.minio, tags: "minio", become: true }