This is an automated email from the ASF dual-hosted git repository.

weichiu pushed a commit to branch HDDS-9225-website-v2
in repository https://gitbox.apache.org/repos/asf/ozone-site.git


The following commit(s) were added to refs/heads/HDDS-9225-website-v2 by this 
push:
     new 66c4d2d5a HDDS-9616. Add downloads page. (#249)
66c4d2d5a is described below

commit 66c4d2d5ab8e072d08407d9b1098dac59aea741e
Author: Wei-Chiu Chuang <[email protected]>
AuthorDate: Thu Jan 15 17:41:16 2026 -0800

    HDDS-9616. Add downloads page. (#249)
    
    Co-authored-by: Ethan Rose <[email protected]>
---
 src/pages/download.md                          | 63 ++++++++++++++++++++++----
 src/pages/release-notes/1.2.1.md               |  3 --
 src/pages/release-notes/{1.3.0.md => 1.4.1.md} |  2 +-
 src/pages/release-notes/{1.0.0.md => 2.0.0.md} |  2 +-
 src/pages/release-notes/{1.1.0.md => 2.1.0.md} |  2 +-
 5 files changed, 57 insertions(+), 15 deletions(-)

diff --git a/src/pages/download.md b/src/pages/download.md
index 91ecf8fc4..2fefd7658 100644
--- a/src/pages/download.md
+++ b/src/pages/download.md
@@ -1,14 +1,59 @@
 # Downloads
 
-**TODO [HDDS-9616](https://issues.apache.org/jira/browse/HDDS-9616) Fill in 
this page.**
+| Version | Release Date | Source Download                                     
                                                                                
                                                                                
                                           | Binary Download                    
                                                                                
                                                                                
              [...]
+| ------- | ------------ | 
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
 | 
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
 [...]
+| 2.1.0   | 2025 Dec 31  | 
[Source](https://www.apache.org/dyn/closer.cgi/ozone/2.1.0/ozone-2.1.0-src.tar.gz)<br/>[Checksum](https://downloads.apache.org/ozone/2.1.0/ozone-2.1.0-src.tar.gz.sha512)<br/>[Signature](https://downloads.apache.org/ozone/2.1.0/ozone-2.1.0-src.tar.gz.asc)
 | 
[Binary](https://www.apache.org/dyn/closer.cgi/ozone/2.1.0/ozone-2.1.0.tar.gz)<br/>[Checksum](https://downloads.apache.org/ozone/2.1.0/ozone-2.1.0.tar.gz.sha512)<br/>[Signature](https://downloads.apache.org/o
 [...]
+| 2.0.0   | 2025 Apr 30  | 
[Source](https://www.apache.org/dyn/closer.cgi/ozone/2.0.0/ozone-2.0.0-src.tar.gz)<br/>[Checksum](https://downloads.apache.org/ozone/2.0.0/ozone-2.0.0-src.tar.gz.sha512)<br/>[Signature](https://downloads.apache.org/ozone/2.0.0/ozone-2.0.0-src.tar.gz.asc)
 | 
[Binary](https://www.apache.org/dyn/closer.cgi/ozone/2.0.0/ozone-2.0.0.tar.gz)<br/>[Checksum](https://downloads.apache.org/ozone/2.0.0/ozone-2.0.0.tar.gz.sha512)<br/>[Signature](https://downloads.apache.org/o
 [...]
+| 1.4.1   | 2024 Nov 24  | 
[Source](https://www.apache.org/dyn/closer.cgi/ozone/1.4.1/ozone-1.4.1-src.tar.gz)<br/>[Checksum](https://downloads.apache.org/ozone/1.4.1/ozone-1.4.1-src.tar.gz.sha512)<br/>[Signature](https://downloads.apache.org/ozone/1.4.1/ozone-1.4.1-src.tar.gz.asc)
 | 
[Binary](https://www.apache.org/dyn/closer.cgi/ozone/1.4.1/ozone-1.4.1.tar.gz)<br/>[Checksum](https://downloads.apache.org/ozone/1.4.1/ozone-1.4.1.tar.gz.sha512)<br/>[Signature](https://downloads.apache.org/o
 [...]
 
-Fill this in similar to what is on the current website.
+## Archives
 
-- Create in a table with all release information from 1.0.0-1.3.0 (example 
below).
-- Include instructions for verifying signatures and checksums.
-- Include license information.
-- Fill in the release notes pages for all past versions 1.0.0-1.3.0.
+Older releases are available from the [Apache Ozone 
archive](https://archive.apache.org/dist/ozone/).
 
-| Version | Release Date | Source Download | Binary Download | Release Notes |
-|-|-|-|-|-|
-| 1.3.0 | 2022 Dec 18 | 
[Source](https://www.apache.org/dyn/closer.cgi/ozone/1.3.0/ozone-1.3.0-src.tar.gz)<br/>[Checksum](https://downloads.apache.org/ozone/1.3.0/ozone-1.3.0-src.tar.gz.sha512)<br/>[Signature](https://downloads.apache.org/ozone/1.3.0/ozone-1.3.0-src.tar.gz.asc)
 | 
[Binary](https://www.apache.org/dyn/closer.cgi/ozone/1.3.0/ozone-1.3.0.tar.gz)<br/>[Checksum](https://downloads.apache.org/ozone/1.3.0/ozone-1.3.0.tar.gz.sha512)<br/>[Signature](https://downloads.apache.org/ozon
 [...]
+## Verify
+
+To verify the integrity of the downloaded files, it is important to check the 
PGP signatures and SHA512 checksums.
+
+### PGP Signatures
+
+PGP signatures can be verified using GPG or PGP. First, download the `KEYS` 
file from the Apache Ozone website.
+
+```bash
+curl https://downloads.apache.org/ozone/KEYS > KEYS
+```
+
+Then, import the keys into your GPG keyring.
+
+```bash
+gpg --import KEYS
+```
+
+Finally, verify the signature of the release file.
+
+```bash
+gpg --verify <file>.asc <file>
+```
+
+For example, to verify the signature of `ozone-2.1.0-src.tar.gz`:
+
+```bash
+gpg --verify ozone-2.1.0-src.tar.gz.asc ozone-2.1.0-src.tar.gz
+```
+
+### SHA512 Checksums
+
+To verify the SHA512 checksum, you can use the `sha512sum` command.
+
+```bash
+sha512sum -c <file>.sha512
+```
+
+For example, to verify the checksum of `ozone-2.1.0-src.tar.gz`:
+
+```bash
+sha512sum -c ozone-2.1.0-src.tar.gz.sha512
+```
+
+## License
+
+The Apache Ozone software is licensed under the [Apache License, Version 
2.0](https://www.apache.org/licenses/LICENSE-2.0). See the `LICENSE.txt` file 
in the root of the distribution for the full license text.
diff --git a/src/pages/release-notes/1.2.1.md b/src/pages/release-notes/1.2.1.md
deleted file mode 100644
index 42d356db3..000000000
--- a/src/pages/release-notes/1.2.1.md
+++ /dev/null
@@ -1,3 +0,0 @@
-# Apache Ozone 1.2.1 Release Notes
-
-**TODO [HDDS-9617](https://issues.apache.org/jira/browse/HDDS-9617) Fill in 
this page.**
diff --git a/src/pages/release-notes/1.3.0.md b/src/pages/release-notes/1.4.1.md
similarity index 72%
rename from src/pages/release-notes/1.3.0.md
rename to src/pages/release-notes/1.4.1.md
index 7b39464ea..10e8328fb 100644
--- a/src/pages/release-notes/1.3.0.md
+++ b/src/pages/release-notes/1.4.1.md
@@ -1,3 +1,3 @@
-# Apache Ozone 1.3.0 Release Notes
+# Release Notes for Ozone 1.4.1
 
 **TODO [HDDS-9617](https://issues.apache.org/jira/browse/HDDS-9617) Fill in 
this page.**
diff --git a/src/pages/release-notes/1.0.0.md b/src/pages/release-notes/2.0.0.md
similarity index 72%
rename from src/pages/release-notes/1.0.0.md
rename to src/pages/release-notes/2.0.0.md
index 5ace2d9ce..0fbb4bc10 100644
--- a/src/pages/release-notes/1.0.0.md
+++ b/src/pages/release-notes/2.0.0.md
@@ -1,3 +1,3 @@
-# Apache Ozone 1.0.0 Release Notes
+# Release Notes for Ozone 2.0.0
 
 **TODO [HDDS-9617](https://issues.apache.org/jira/browse/HDDS-9617) Fill in 
this page.**
diff --git a/src/pages/release-notes/1.1.0.md b/src/pages/release-notes/2.1.0.md
similarity index 72%
rename from src/pages/release-notes/1.1.0.md
rename to src/pages/release-notes/2.1.0.md
index 73b5ad62b..b64f13b47 100644
--- a/src/pages/release-notes/1.1.0.md
+++ b/src/pages/release-notes/2.1.0.md
@@ -1,3 +1,3 @@
-# Apache Ozone 1.1.0 Release Notes
+# Release Notes for Ozone 2.1.0
 
 **TODO [HDDS-9617](https://issues.apache.org/jira/browse/HDDS-9617) Fill in 
this page.**


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to