Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The same repository contains both the hadoop and the ozone sub-site.

In short:

  1. Put the photo with the haiku to ozone/static/releases/
  2. Create You need a new page like ozone/src/release/0.3.0-alpha.mdYou put the photo with the haiku to ozone/static/releases/
  3. Copy the docs from the binary artifact to content/ozone/docs/
  4. Rename the above folder to the release version, example 0.5.0-beta
  5. Update the symbolic link for current. o do this, you will unlink current and then create new symlink
    cd content/ozone/docs
    unlink current
    ln -s content/ozone/docs/0.5.0-beta/ ./current
  6. Regenerate the site: cd hadoop-site/ozone && hugo
  7. Create a shorter announcement to the hadoop site, such as src/news/2018-11-22-ozone-0.3.0-alpha.md
  8. Execute hugo on the root dir of the repository
  9. Go to the content subfolder, start a webserver (I use Caddy without a config but python -m http also works) and check the result

You also need to upload the docs folder. It should be copied from the binary artifact to content/ozone/docs/...

...

At the end: commit and push everything (including the changes under ./content)

...