-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathconfig.yaml
44 lines (43 loc) · 1.27 KB
/
config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Copyright 2023 Canonical Ltd.
# See LICENSE file for licensing details.
options:
port:
type: int
default: 9000
description: HTTP port
console-port:
type: int
default: 9001
description: HTTP port for minio console
access-key:
type: string
default: 'minio'
description: Access key
secret-key:
type: string
default: ''
description: Secret key. Must be at least 8 characters long. If not provided, a random key will be used.
mode:
type: string
default: 'server'
description: "Mode of operations. Possible values: server, gateway"
gateway-storage-service:
type: string
default: ''
description: "Storage service used by gateway to store objects. This value is required for gateway mode. Possible values: s3, azure"
storage-service-endpoint:
type: string
default: ''
description: "Service endpoint of gateway storage service. This value is optional when using S3 or Azure public API endpoints"
ssl-ca:
type: string
default: ''
description: "Base64 encoded certificate authority for untrusted certificate chains"
ssl-cert:
type: string
default: ''
description: "Base64 encoded SSL certificate."
ssl-key:
type: string
default: ''
description: "Base64 encoded SSL key."