configuring new minio server
This commit is contained in:
parent
ab1a8b4745
commit
b396a5689c
2 changed files with 11 additions and 1 deletions
|
@ -17,6 +17,7 @@ spec:
|
||||||
[global]
|
[global]
|
||||||
repo1-s3-key={{ .minio_crunchy_postgres_access_key }}
|
repo1-s3-key={{ .minio_crunchy_postgres_access_key }}
|
||||||
repo1-s3-key-secret={{ .minio_crunchy_postgres_secret_key }}
|
repo1-s3-key-secret={{ .minio_crunchy_postgres_secret_key }}
|
||||||
|
repo1-s3-verify-tls=false
|
||||||
encryption.conf: |
|
encryption.conf: |
|
||||||
[global]
|
[global]
|
||||||
repo1-cipher-pass={{ .crunchy_postgres_backup_encryption_cipher }}
|
repo1-cipher-pass={{ .crunchy_postgres_backup_encryption_cipher }}
|
||||||
|
@ -36,3 +37,12 @@ spec:
|
||||||
- regexp:
|
- regexp:
|
||||||
source: "(.*)"
|
source: "(.*)"
|
||||||
target: "minio_$1"
|
target: "minio_$1"
|
||||||
|
- extract:
|
||||||
|
key: hetzner
|
||||||
|
rewrite:
|
||||||
|
- regexp:
|
||||||
|
source: "[^a-zA-Z0-9 -]"
|
||||||
|
target: "_"
|
||||||
|
- regexp:
|
||||||
|
source: "(.*)"
|
||||||
|
target: "hetzner_$1"
|
||||||
|
|
|
@ -178,7 +178,7 @@ spec:
|
||||||
- name: repo1 # Minio
|
- name: repo1 # Minio
|
||||||
s3: &minio
|
s3: &minio
|
||||||
bucket: "crunchy-main"
|
bucket: "crunchy-main"
|
||||||
endpoint: "s3.hsn.dev"
|
endpoint: "10.1.1.61"
|
||||||
region: "us-east-1"
|
region: "us-east-1"
|
||||||
schedules:
|
schedules:
|
||||||
full: "0 1 * * 0" # Sunday at 01:00
|
full: "0 1 * * 0" # Sunday at 01:00
|
||||||
|
|
Reference in a new issue