added secrets to distributed swarm minio (#4374)
parent
348aa6566c
commit
9136734c02
@ -0,0 +1,93 @@ |
|||||||
|
version: '3.1' |
||||||
|
|
||||||
|
services: |
||||||
|
minio1: |
||||||
|
image: minio/minio:RELEASE.2017-05-05T01-14-51Z |
||||||
|
volumes: |
||||||
|
- minio1-data:/export |
||||||
|
ports: |
||||||
|
- "9001:9000" |
||||||
|
networks: |
||||||
|
- minio_distributed |
||||||
|
deploy: |
||||||
|
restart_policy: |
||||||
|
delay: 10s |
||||||
|
max_attempts: 10 |
||||||
|
window: 60s |
||||||
|
command: server http://minio1/export http://minio2/export http://minio3/export http://minio4/export |
||||||
|
secrets: |
||||||
|
- secret_key |
||||||
|
- access_key |
||||||
|
|
||||||
|
minio2: |
||||||
|
image: minio/minio:RELEASE.2017-05-05T01-14-51Z |
||||||
|
volumes: |
||||||
|
- minio2-data:/export |
||||||
|
ports: |
||||||
|
- "9002:9000" |
||||||
|
networks: |
||||||
|
- minio_distributed |
||||||
|
deploy: |
||||||
|
restart_policy: |
||||||
|
delay: 10s |
||||||
|
max_attempts: 10 |
||||||
|
window: 60s |
||||||
|
command: server http://minio1/export http://minio2/export http://minio3/export http://minio4/export |
||||||
|
secrets: |
||||||
|
- secret_key |
||||||
|
- access_key |
||||||
|
|
||||||
|
minio3: |
||||||
|
image: minio/minio:RELEASE.2017-05-05T01-14-51Z |
||||||
|
volumes: |
||||||
|
- minio3-data:/export |
||||||
|
ports: |
||||||
|
- "9003:9000" |
||||||
|
networks: |
||||||
|
- minio_distributed |
||||||
|
deploy: |
||||||
|
restart_policy: |
||||||
|
delay: 10s |
||||||
|
max_attempts: 10 |
||||||
|
window: 60s |
||||||
|
command: server http://minio1/export http://minio2/export http://minio3/export http://minio4/export |
||||||
|
secrets: |
||||||
|
- secret_key |
||||||
|
- access_key |
||||||
|
|
||||||
|
minio4: |
||||||
|
image: minio/minio:RELEASE.2017-05-05T01-14-51Z |
||||||
|
volumes: |
||||||
|
- minio4-data:/export |
||||||
|
ports: |
||||||
|
- "9004:9000" |
||||||
|
networks: |
||||||
|
- minio_distributed |
||||||
|
deploy: |
||||||
|
restart_policy: |
||||||
|
delay: 10s |
||||||
|
max_attempts: 10 |
||||||
|
window: 60s |
||||||
|
command: server http://minio1/export http://minio2/export http://minio3/export http://minio4/export |
||||||
|
secrets: |
||||||
|
- secret_key |
||||||
|
- access_key |
||||||
|
|
||||||
|
volumes: |
||||||
|
minio1-data: |
||||||
|
|
||||||
|
minio2-data: |
||||||
|
|
||||||
|
minio3-data: |
||||||
|
|
||||||
|
minio4-data: |
||||||
|
|
||||||
|
networks: |
||||||
|
minio_distributed: |
||||||
|
driver: overlay |
||||||
|
|
||||||
|
secrets: |
||||||
|
secret_key: |
||||||
|
external: true |
||||||
|
access_key: |
||||||
|
external: true |
Loading…
Reference in new issue