Skip to content

Commit 5f10a1b

Browse files
committed
feat: add seaweedfs template
1 parent f954e20 commit 5f10a1b

File tree

2 files changed

+32
-1
lines changed

2 files changed

+32
-1
lines changed

blueprints/seaweedfs/template.toml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
[variables]
2-
filer_domain = "${domain}"
2+
filer_domain = "filer.${domain}"
3+
master_domain = "master.${domain}"
4+
s3_domain = "s3.${domain}"
35

46
[config]
57
mounts = []
@@ -9,6 +11,16 @@ serviceName = "filer"
911
port = 8888
1012
host = "${filer_domain}"
1113

14+
[[config.domains]]
15+
serviceName = "master"
16+
port = 9333
17+
host = "${master_domain}"
18+
19+
[[config.domains]]
20+
serviceName = "s3"
21+
port = 8333
22+
host = "${s3_domain}"
23+
1224
[config.env]
1325
S3_ACCESS_KEY = "admin"
1426
S3_SECRET_KEY = "${password:16}"

meta.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5342,6 +5342,25 @@
53425342
"aggregator"
53435343
]
53445344
},
5345+
{
5346+
"id": "seaweedfs",
5347+
"name": "SeaweedFS",
5348+
"version": "latest",
5349+
"description": "SeaweedFS is a fast distributed storage system for blobs, objects, and files. Features S3-compatible API, POSIX FUSE mount, and WebDAV support.",
5350+
"logo": "seaweedfs.svg",
5351+
"links": {
5352+
"github": "https://github.com/seaweedfs/seaweedfs",
5353+
"website": "https://seaweedfs.com/",
5354+
"docs": "https://github.com/seaweedfs/seaweedfs/wiki"
5355+
},
5356+
"tags": [
5357+
"storage",
5358+
"s3",
5359+
"distributed",
5360+
"object-storage",
5361+
"file-system"
5362+
]
5363+
},
53455364
{
53465365
"id": "shlink",
53475366
"name": "Shlink",

0 commit comments

Comments
 (0)