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 }