From 5e79436498a25f6b085f77980b0ffb377409174c Mon Sep 17 00:00:00 2001 From: chrislu Date: Thu, 26 Jun 2025 11:09:15 -0700 Subject: [PATCH] reference seaweedfs.com --- README.md | 8 ++++++++ k8s/charts/seaweedfs/README.md | 5 +++++ weed/command/version.go | 3 +++ 3 files changed, 16 insertions(+) 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 }