aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorchrislu <chris.lu@gmail.com>2025-06-26 11:09:15 -0700
committerchrislu <chris.lu@gmail.com>2025-06-26 11:09:17 -0700
commit5e79436498a25f6b085f77980b0ffb377409174c (patch)
tree8b1ac29a83bd1a1734fbfe5bd5de7b21c026ceb4
parent877b9b788a49b912958e9e37c7ff8c0ab09bc5c5 (diff)
downloadseaweedfs-5e79436498a25f6b085f77980b0ffb377409174c.tar.xz
seaweedfs-5e79436498a25f6b085f77980b0ffb377409174c.zip
reference seaweedfs.com
-rw-r--r--README.md8
-rw-r--r--k8s/charts/seaweedfs/README.md5
-rw-r--r--weed/command/version.go3
3 files changed, 16 insertions, 0 deletions
diff --git a/README.md b/README.md
index f004e72e4..240f0c504 100644
--- a/README.md
+++ b/README.md
@@ -73,6 +73,7 @@ Table of Contents
* [Installation Guide](#installation-guide)
* [Disk Related Topics](#disk-related-topics)
* [Benchmark](#benchmark)
+* [Enterprise](#enterprise)
* [License](#license)
# Quick Start #
@@ -651,6 +652,13 @@ Total Errors:0.
[Back to TOC](#table-of-contents)
+## Enterprise ##
+
+For enterprise users, please visit [seaweedfs.com](https://seaweedfs.com) for the SeaweedFS Enterprise Edition,
+which has a self-healing storage format with better data protection.
+
+[Back to TOC](#table-of-contents)
+
## License ##
Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/k8s/charts/seaweedfs/README.md b/k8s/charts/seaweedfs/README.md
index 70a1bedbb..30885aee3 100644
--- a/k8s/charts/seaweedfs/README.md
+++ b/k8s/charts/seaweedfs/README.md
@@ -144,3 +144,8 @@ stringData:
# this key must be an inline json config file
seaweedfs_s3_config: '{"identities":[{"name":"anvAdmin","credentials":[{"accessKey":"snu8yoP6QAlY0ne4","secretKey":"PNzBcmeLNEdR0oviwm04NQAicOrDH1Km"}],"actions":["Admin","Read","Write"]},{"name":"anvReadOnly","credentials":[{"accessKey":"SCigFee6c5lbi04A","secretKey":"kgFhbT38R8WUYVtiFQ1OiSVOrYr3NKku"}],"actions":["Read"]}]}'
```
+
+## Enterprise
+
+For enterprise users, please visit [seaweedfs.com](https://seaweedfs.com) for the SeaweedFS Enterprise Edition,
+which has a self-healing storage format with better data protection.
diff --git a/weed/command/version.go b/weed/command/version.go
index bbbbbaff0..fdde081ad 100644
--- a/weed/command/version.go
+++ b/weed/command/version.go
@@ -19,5 +19,8 @@ func runVersion(cmd *Command, args []string) bool {
}
fmt.Printf("version %s %s %s\n", version.Version(), runtime.GOOS, runtime.GOARCH)
+ println()
+ println("For enterprise users, please visit https://seaweedfs.com for SeaweedFS Enterprise Edition,")
+ println("which has a self-healing storage format with better data protection.")
return true
}