minio ausgebaut (#247)

Co-authored-by: Michael Grote <michael.grote@posteo.de>
Reviewed-on: mg/ansible#247
Co-authored-by: mg <michael.grote@posteo.de>
Co-committed-by: mg <michael.grote@posteo.de>
This commit is contained in:
Michael Grote 2021-11-18 17:45:35 +01:00
parent 09720c1bb6
commit b1be05e876
3 changed files with 0 additions and 57 deletions

View File

@ -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

View File

@ -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:

View File

@ -1,4 +0,0 @@
---
- hosts: minio
roles:
- { role: mgrote.minio, tags: "minio", become: true }